Module Name:    src
Committed By:   pooka
Date:           Mon Apr 19 11:26:33 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpkern: emul.c

Log Message:
no \n in panic


To generate a diff of this commit:
cvs rdiff -u -r1.128 -r1.129 src/sys/rump/librump/rumpkern/emul.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/emul.c
diff -u src/sys/rump/librump/rumpkern/emul.c:1.128 src/sys/rump/librump/rumpkern/emul.c:1.129
--- src/sys/rump/librump/rumpkern/emul.c:1.128	Sat Apr 17 16:34:29 2010
+++ src/sys/rump/librump/rumpkern/emul.c	Mon Apr 19 11:26:33 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: emul.c,v 1.128 2010/04/17 16:34:29 pooka Exp $	*/
+/*	$NetBSD: emul.c,v 1.129 2010/04/19 11:26:33 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.128 2010/04/17 16:34:29 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.129 2010/04/19 11:26:33 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/null.h>
@@ -151,7 +151,7 @@
 	case SIGSYS:
 		break;
 	default:
-		panic("unhandled signal %d\n", signo);
+		panic("unhandled signal %d", signo);
 	}
 }
 

Reply via email to