Source-Changes-HG archive

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

[src/netbsd-1-5]: src/sys/sys Pull up revision 1.77 (requested by oki):



details:   https://anonhg.NetBSD.org/src/rev/3b420b0abce9
branches:  netbsd-1-5
changeset: 490591:3b420b0abce9
user:      he <he%NetBSD.org@localhost>
date:      Sat Feb 03 20:00:02 2001 +0000

description:
Pull up revision 1.77 (requested by oki):
  Correct macro expansions of NEW_VMCMD and NEW_VMCMD2 (under DEBUG)
  to not contain ``;'' at the end.

diffstat:

 sys/sys/exec.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 33b2430f78a3 -r 3b420b0abce9 sys/sys/exec.h
--- a/sys/sys/exec.h    Sat Feb 03 19:46:51 2001 +0000
+++ b/sys/sys/exec.h    Sat Feb 03 20:00:02 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec.h,v 1.68.4.3 2000/11/03 20:01:37 tv Exp $ */
+/*     $NetBSD: exec.h,v 1.68.4.4 2001/02/03 20:00:02 he Exp $ */
 
 /*-
  * Copyright (c) 1994 Christopher G. Demetriou
@@ -187,9 +187,9 @@
                    u_long len, u_long addr, struct vnode *vp, u_long offset,
                    u_int prot, int flags));
 #define        NEW_VMCMD(evsp,proc,len,addr,vp,offset,prot) \
-       new_vmcmd(evsp,proc,len,addr,vp,offset,prot,0);
+       new_vmcmd(evsp,proc,len,addr,vp,offset,prot,0)
 #define        NEW_VMCMD2(evsp,proc,len,addr,vp,offset,prot,flags) \
-       new_vmcmd(evsp,proc,len,addr,vp,offset,prot,flags);
+       new_vmcmd(evsp,proc,len,addr,vp,offset,prot,flags)
 #else  /* DEBUG */
 #define        NEW_VMCMD(evsp,proc,len,addr,vp,offset,prot) \
        NEW_VMCMD2(evsp,proc,len,addr,vp,offset,prot,0)



Home | Main Index | Thread Index | Old Index