]> Zhao Yanbai Git Server - minix.git/commitdiff
More space for mdb. Terminate an error message with a newline.
authorPhilip Homburg <philip@cs.vu.nl>
Wed, 15 Mar 2006 11:29:22 +0000 (11:29 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Wed, 15 Mar 2006 11:29:22 +0000 (11:29 +0000)
commands/mdb/Makefile
commands/mdb/io.c

index e39f079d564e5bf654650cd0e2ddac380d3e0b08..976da2cd45bd7eed5249141ae49b106fbdf77b49 100644 (file)
@@ -15,7 +15,7 @@ CC            =exec cc
 LD             =exec cc
 LDFLAGS                =-i
 TARGET         =mdb
-STACK          =100000
+STACK          =200000
 #
 # (2) If kernel and mm are not in "/usr/src" change this
 #
index f99b128297a75a3fb24162edebb007daa2748c2d..874fde4d1aaeeef9293b443fd7c28b99513e86de 100644 (file)
@@ -143,6 +143,7 @@ char *m;
     outstr(m);
     outstr(": ");
     outstr(strerror(errno));   
+    outstr("\n");
 }
 
 PUBLIC void closestring()