Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/kern Pull up revision 1.74 (requested by junyoung i...



details:   https://anonhg.NetBSD.org/src/rev/23cb8b53aa00
branches:  netbsd-1-6
changeset: 530749:23cb8b53aa00
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Sep 27 15:52:43 2003 +0000

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

diffstat:

 sys/kern/exec_elf32.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 0bb82945614e -r 23cb8b53aa00 sys/kern/exec_elf32.c
--- a/sys/kern/exec_elf32.c     Sat Sep 27 15:52:37 2003 +0000
+++ b/sys/kern/exec_elf32.c     Sat Sep 27 15:52:43 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_elf32.c,v 1.70 2002/01/28 22:15:55 thorpej Exp $  */
+/*     $NetBSD: exec_elf32.c,v 1.70.10.1 2003/09/27 15:52:43 tron Exp $        */
 
 /*-
  * Copyright (c) 1994, 2000 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exec_elf32.c,v 1.70 2002/01/28 22:15:55 thorpej Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exec_elf32.c,v 1.70.10.1 2003/09/27 15:52:43 tron Exp $");
 
 /* If not included by exec_elf64.c, ELFSIZE won't be defined. */
 #ifndef ELFSIZE
@@ -459,7 +459,7 @@
        if (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