diff options
author | 2002-03-14 23:44:37 +0000 | |
---|---|---|
committer | 2002-03-14 23:44:37 +0000 | |
commit | 64dff2a7cfb05bc502a49af927171ff806e941be (patch) | |
tree | c50906888cf0fa7ff6ec38a81e5563bea8eddc27 | |
parent | add pin, chpin (diff) | |
download | wireguard-openbsd-64dff2a7cfb05bc502a49af927171ff806e941be.tar.xz wireguard-openbsd-64dff2a7cfb05bc502a49af927171ff806e941be.zip |
Don't put a tab between a function and its arguments
-rw-r--r-- | sys/kern/makesyscalls.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index 97a72978fce..e641fe5df65 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -1,5 +1,5 @@ #! /bin/sh - -# $OpenBSD: makesyscalls.sh,v 1.9 2002/03/14 01:27:04 millert Exp $ +# $OpenBSD: makesyscalls.sh,v 1.10 2002/03/14 23:44:37 millert Exp $ # $NetBSD: makesyscalls.sh,v 1.26 1998/01/09 06:17:51 thorpej Exp $ # # Copyright (c) 1994,1996 Christopher G. Demetriou @@ -350,10 +350,10 @@ function putent(nodefs, compatwrap) { if (nodefs != "INDIR") { prototype = "(struct proc *, void *, register_t *)" if (compatwrap == "") - printf("int\t%s\t%s;\n", funcname, + printf("int\t%s%s;\n", funcname, prototype) > sysprotos else - printf("int\t%s_%s\t%s;\n", compatwrap, funcname, + printf("int\t%s_%s%s;\n", compatwrap, funcname, prototype) > sysprotos } |