From: Ben Pfaff Date: Sat, 27 May 2006 20:10:32 +0000 (+0000) Subject: Put "abort" in "User process abort" in all caps, analogous to "Kernel X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b640719cb853f957011258456dad330b79581a9;p=pintos-anon Put "abort" in "User process abort" in all caps, analogous to "Kernel PANIC". --- diff --git a/src/lib/user/debug.c b/src/lib/user/debug.c index 6b71fc6..f49b874 100644 --- a/src/lib/user/debug.c +++ b/src/lib/user/debug.c @@ -12,7 +12,7 @@ debug_panic (const char *file, int line, const char *function, { va_list args; - printf ("User process abort at %s:%d in %s(): ", file, line, function); + printf ("User process ABORT at %s:%d in %s(): ", file, line, function); va_start (args, message); vprintf (message, args);