Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ddb add a return in the panic message



details:   https://anonhg.NetBSD.org/src/rev/c39c705ee230
branches:  trunk
changeset: 792966:c39c705ee230
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Jan 22 15:20:40 2014 +0000

description:
add a return in the panic message

diffstat:

 sys/ddb/db_panic.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 0ceb65af2f6a -r c39c705ee230 sys/ddb/db_panic.c
--- a/sys/ddb/db_panic.c        Wed Jan 22 15:19:05 2014 +0000
+++ b/sys/ddb/db_panic.c        Wed Jan 22 15:20:40 2014 +0000
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_panic.c,v 1.2 2013/02/10 14:44:14 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_panic.c,v 1.3 2014/01/22 15:20:40 christos Exp $");
 
 #include <sys/types.h>
 #include <sys/cpu.h>
@@ -57,7 +57,7 @@
                            cpu_index(curcpu()));
                        intrace = 0;
                } else
-                       printf("Faulted in mid-traceback; aborting...");
+                       printf("Faulted in mid-traceback; aborting...\n");
                if (db_onpanic == 2)
                        Debugger();
        }



Home | Main Index | Thread Index | Old Index