Module Name: src
Committed By: christos
Date: Sun Mar 8 17:49:08 UTC 2015
Modified Files:
src/sys/kern: makesyscalls.sh
Log Message:
kill empty line
To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 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.149 src/sys/kern/makesyscalls.sh:1.150
--- src/sys/kern/makesyscalls.sh:1.149 Sun Mar 8 11:07:05 2015
+++ src/sys/kern/makesyscalls.sh Sun Mar 8 13:49:08 2015
@@ -1,4 +1,4 @@
-# $NetBSD: makesyscalls.sh,v 1.149 2015/03/08 15:07:05 christos Exp $
+# $NetBSD: makesyscalls.sh,v 1.150 2015/03/08 17:49:08 christos Exp $
#
# Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
# All rights reserved.
@@ -784,9 +784,9 @@ function putent(type, compatwrap) {
}
# output syscall switch entry
- printf("\t{\n\t\t") > sysent
+ printf("\t{") > sysent
if (argc != 0) {
- printf("ns(struct %s%s_args),", compatwrap_, funcname) > sysent
+ printf("\n\t\tns(struct %s%s_args),", compatwrap_, funcname) > sysent
}
if (modular)
wfn = "sys_nomodule";