diff options
| author | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
| commit | 168cd830d22e1f4a4c2bde1105f9f94d40fb870d (patch) | |
| tree | f82ce44db748b3513a12da35feca2a8d352de90f /sys/compat/linux/common/linux_exec.c | |
| parent | c72ed40f2540010a7b00337d0da9266cc2092eb6 (diff) | |
__unused removal on arguments; approved by core.
Diffstat (limited to 'sys/compat/linux/common/linux_exec.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_exec.c b/sys/compat/linux/common/linux_exec.c index da8a3dabb75..d3821c2bb60 100644 --- a/sys/compat/linux/common/linux_exec.c +++ b/sys/compat/linux/common/linux_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec.c,v 1.88 2006/10/12 01:30:48 christos Exp $ */ +/* $NetBSD: linux_exec.c,v 1.89 2006/11/16 01:32:42 christos Exp $ */ /*- * Copyright (c) 1994, 1995, 1998, 2000 The NetBSD Foundation, Inc. @@ -38,7 +38,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.88 2006/10/12 01:30:48 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.89 2006/11/16 01:32:42 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -255,7 +255,7 @@ linux_e_proc_init(p, parent, forkflags) * the executed process is of same emulation as original forked one. */ static void -linux_e_proc_exec(struct proc *p, struct exec_package *epp __unused) +linux_e_proc_exec(struct proc *p, struct exec_package *epp) { /* exec, use our vmspace */ linux_e_proc_init(p, NULL, 0); |
