More space for mdb. Terminate an error message with a newline.

This commit is contained in:
Philip Homburg 2006-03-15 11:29:22 +00:00
parent 8500d0f238
commit d2d193c7b6
2 changed files with 2 additions and 1 deletions

View file

@ -15,7 +15,7 @@ CC =exec cc
LD =exec cc LD =exec cc
LDFLAGS =-i LDFLAGS =-i
TARGET =mdb TARGET =mdb
STACK =100000 STACK =200000
# #
# (2) If kernel and mm are not in "/usr/src" change this # (2) If kernel and mm are not in "/usr/src" change this
# #

View file

@ -143,6 +143,7 @@ char *m;
outstr(m); outstr(m);
outstr(": "); outstr(": ");
outstr(strerror(errno)); outstr(strerror(errno));
outstr("\n");
} }
PUBLIC void closestring() PUBLIC void closestring()