Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/netbsd32 Rename stack gap arguments.



details:   https://anonhg.NetBSD.org/src/rev/cea5d72d9138
branches:  trunk
changeset: 329900:cea5d72d9138
user:      joerg <joerg%NetBSD.org@localhost>
date:      Fri Jun 13 10:42:26 2014 +0000

description:
Rename stack gap arguments.

diffstat:

 sys/compat/netbsd32/netbsd32_sysctl.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r b7cf34d31e81 -r cea5d72d9138 sys/compat/netbsd32/netbsd32_sysctl.c
--- a/sys/compat/netbsd32/netbsd32_sysctl.c     Fri Jun 13 10:37:22 2014 +0000
+++ b/sys/compat/netbsd32/netbsd32_sysctl.c     Fri Jun 13 10:42:26 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_sysctl.c,v 1.34 2014/05/16 12:22:32 martin Exp $      */
+/*     $NetBSD: netbsd32_sysctl.c,v 1.35 2014/06/13 10:42:26 joerg Exp $       */
 
 /*
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysctl.c,v 1.34 2014/05/16 12:22:32 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysctl.c,v 1.35 2014/06/13 10:42:26 joerg Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_ddb.h"
@@ -186,8 +186,8 @@
         * get and convert 32 bit size_t to native size_t
         */
        namep = SCARG_P32(uap, name);
-       oldp = SCARG_P32(uap, old);
-       newp = SCARG_P32(uap, new);
+       oldp = SCARG_P32(uap, oldv);
+       newp = SCARG_P32(uap, newv);
        oldlenp = SCARG_P32(uap, oldlenp);
        oldlen = 0;
        if (oldlenp != NULL) {



Home | Main Index | Thread Index | Old Index