Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Remove argument name from prototype.



details:   https://anonhg.NetBSD.org/src/rev/ee3ea90e7178
branches:  trunk
changeset: 326744:ee3ea90e7178
user:      njoly <njoly%NetBSD.org@localhost>
date:      Sat Feb 15 22:32:16 2014 +0000

description:
Remove argument name from prototype.

diffstat:

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

diffs (27 lines):

diff -r cd57ceaac12f -r ee3ea90e7178 sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c   Sat Feb 15 22:20:41 2014 +0000
+++ b/sys/kern/vfs_syscalls.c   Sat Feb 15 22:32:16 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vfs_syscalls.c,v 1.475 2014/01/25 17:24:45 christos Exp $      */
+/*     $NetBSD: vfs_syscalls.c,v 1.476 2014/02/15 22:32:16 njoly Exp $ */
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.475 2014/01/25 17:24:45 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.476 2014/02/15 22:32:16 njoly Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -117,7 +117,7 @@
 #include <nfs/nfs_var.h>
 
 static int change_flags(struct vnode *, u_long, struct lwp *);
-static int change_mode(struct vnode *, int, struct lwp *l);
+static int change_mode(struct vnode *, int, struct lwp *);
 static int change_owner(struct vnode *, uid_t, gid_t, struct lwp *, int);
 static int do_sys_openat(lwp_t *, int, const char *, int, int, int *);
 static int do_sys_mkdirat(struct lwp *l, int, const char *, mode_t,



Home | Main Index | Thread Index | Old Index