Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern fix awk-induced bug (using wrong variable, getting ...
details: https://anonhg.NetBSD.org/src/rev/d0b3cca680f4
branches: trunk
changeset: 972830:d0b3cca680f4
user: dholland <dholland%NetBSD.org@localhost>
date: Thu Jun 11 02:21:26 2020 +0000
description:
fix awk-induced bug (using wrong variable, getting away with it by luck)
diffstat:
sys/kern/makesyscalls.sh | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 8afb88130ca7 -r d0b3cca680f4 sys/kern/makesyscalls.sh
--- a/sys/kern/makesyscalls.sh Thu Jun 11 00:33:30 2020 +0000
+++ b/sys/kern/makesyscalls.sh Thu Jun 11 02:21:26 2020 +0000
@@ -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 printrumpsysent(insysent, compatwrap) {
+function printrumpsysent(insysent, compatwrap_) {
if (modular) {
fn = rumpnomodule
flags = rumpnoflags
@@ -941,7 +941,7 @@
} else {
insysent = 1
}
- printrumpsysent(insysent, compatwrap)
+ printrumpsysent(insysent, compatwrap_)
# output rump marshalling code if necessary
if (!rumpable) {
Home |
Main Index |
Thread Index |
Old Index