Module Name:    src
Committed By:   dholland
Date:           Thu Jun 11 02:21:26 UTC 2020

Modified Files:
        src/sys/kern: makesyscalls.sh

Log Message:
fix awk-induced bug (using wrong variable, getting away with it by luck)


To generate a diff of this commit:
cvs rdiff -u -r1.179 -r1.180 src/sys/kern/makesyscalls.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/makesyscalls.sh
diff -u src/sys/kern/makesyscalls.sh:1.179 src/sys/kern/makesyscalls.sh:1.180
--- src/sys/kern/makesyscalls.sh:1.179	Tue Jun  9 04:48:45 2020
+++ src/sys/kern/makesyscalls.sh	Thu Jun 11 02:21:26 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.179 2020/06/09 04:48:45 dholland Exp $
+#	$NetBSD: makesyscalls.sh,v 1.180 2020/06/11 02:21:26 dholland Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -756,7 +756,7 @@ function printproto(wrap) {
 	}
 }
 
-function printrumpsysent(insysent, compatwrap) {
+function printrumpsysent(insysent, compatwrap_) {
 	if (modular) {
 		fn = rumpnomodule
 		flags = rumpnoflags
@@ -941,7 +941,7 @@ function putent(type, compatwrap) {
 	} else {
 		insysent = 1
 	}
-	printrumpsysent(insysent, compatwrap)
+	printrumpsysent(insysent, compatwrap_)
 
 	# output rump marshalling code if necessary
 	if (!rumpable) {

Reply via email to