Source-Changes-HG archive

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

[src/trunk]: src/sys/kern remove variable name from prototype.



details:   https://anonhg.NetBSD.org/src/rev/47a4e1bdfa69
branches:  trunk
changeset: 551980:47a4e1bdfa69
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Sep 14 23:45:53 2003 +0000

description:
remove variable name from prototype.

diffstat:

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

diffs (27 lines):

diff -r 8b3d52310c3c -r 47a4e1bdfa69 sys/kern/kern_sig.c
--- a/sys/kern/kern_sig.c       Sun Sep 14 23:45:16 2003 +0000
+++ b/sys/kern/kern_sig.c       Sun Sep 14 23:45:53 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_sig.c,v 1.153 2003/09/14 17:39:03 christos Exp $  */
+/*     $NetBSD: kern_sig.c,v 1.154 2003/09/14 23:45:53 christos Exp $  */
 
 /*
  * Copyright (c) 1982, 1986, 1989, 1991, 1993
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.153 2003/09/14 17:39:03 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.154 2003/09/14 23:45:53 christos Exp $");
 
 #include "opt_ktrace.h"
 #include "opt_compat_sunos.h"
@@ -84,7 +84,7 @@
 static int     build_corename(struct proc *, char [MAXPATHLEN]);
 static void    ksiginfo_exithook(struct proc *, void *);
 static void    ksiginfo_save(struct proc *, ksiginfo_t *);
-static void    ksiginfo_del(struct proc *p, ksiginfo_t *);
+static void    ksiginfo_del(struct proc *, ksiginfo_t *);
 static void    ksiginfo_put(struct proc *, ksiginfo_t *);
 static ksiginfo_t *ksiginfo_get(struct proc *, int);
 



Home | Main Index | Thread Index | Old Index