Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/compat/common Pull up revision 1.6 (requested by ju...



details:   https://anonhg.NetBSD.org/src/rev/7d221aedaeee
branches:  netbsd-1-6
changeset: 530753:7d221aedaeee
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Sep 27 15:53:07 2003 +0000

description:
Pull up revision 1.6 (requested by junyoung in ticket #1466):
remove trailing \n in panic().  approved perry.

diffstat:

 sys/compat/common/compat_exec.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 37b13a71c1db -r 7d221aedaeee sys/compat/common/compat_exec.c
--- a/sys/compat/common/compat_exec.c   Sat Sep 27 15:53:01 2003 +0000
+++ b/sys/compat/common/compat_exec.c   Sat Sep 27 15:53:07 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: compat_exec.c,v 1.5 2001/11/13 02:07:59 lukem Exp $    */
+/*     $NetBSD: compat_exec.c,v 1.5.10.1 2003/09/27 15:53:07 tron Exp $        */
 
 /*
  * Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: compat_exec.c,v 1.5 2001/11/13 02:07:59 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: compat_exec.c,v 1.5.10.1 2003/09/27 15:53:07 tron Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -72,7 +72,7 @@
            epp->ep_vp->v_writecount != 0) {
 #ifdef DIAGNOSTIC
                if (epp->ep_vp->v_flag & VTEXT)
-                       panic("exec: a VTEXT vnode has writecount != 0\n");
+                       panic("exec: a VTEXT vnode has writecount != 0");
 #endif
                return ETXTBSY;
        }



Home | Main Index | Thread Index | Old Index