Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/sys/arch/mips/mips Pull up revision 1.33 (requested by ...
details: https://anonhg.NetBSD.org/src/rev/712adc8cdd5e
branches: netbsd-1-6
changeset: 530756:712adc8cdd5e
user: tron <tron%NetBSD.org@localhost>
date: Sat Sep 27 15:53:26 2003 +0000
description:
Pull up revision 1.33 (requested by junyoung in ticket #1466):
remove trailing \n in panic(). approved perry.
diffstat:
sys/arch/mips/mips/cpu_exec.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 3cb97b27f8a7 -r 712adc8cdd5e sys/arch/mips/mips/cpu_exec.c
--- a/sys/arch/mips/mips/cpu_exec.c Sat Sep 27 15:53:20 2003 +0000
+++ b/sys/arch/mips/mips/cpu_exec.c Sat Sep 27 15:53:26 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu_exec.c,v 1.32 2002/03/06 00:22:09 simonb Exp $ */
+/* $NetBSD: cpu_exec.c,v 1.32.8.1 2003/09/27 15:53:26 tron Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -112,7 +112,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;
}
@@ -217,7 +217,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