diff options
author | jhb <jhb@FreeBSD.org> | 2006-02-28 21:49:33 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-02-28 21:49:33 +0000 |
commit | 1ec49d602a80028377023a0fdc8f11d6281a3b18 (patch) | |
tree | 29ca37782709cff55cee2300ecd6319423660211 /usr.sbin/sysinstall/Makefile | |
parent | 6dd5abcf92dd9a747d9ec038a372392b97daf728 (diff) | |
download | FreeBSD-src-1ec49d602a80028377023a0fdc8f11d6281a3b18.zip FreeBSD-src-1ec49d602a80028377023a0fdc8f11d6281a3b18.tar.gz |
Fix numerous warnings. Aside from menu items in system.c and menu.c
this now compiles on i386 with WARNS?= 3. Most of the fixes included
adding missing 'static' keywords to internal functions, using fully-defined
terminators in statically defined arrays of structs, and various
signed vs unsigned mismatches. Also G/C'd unused configSecurity()
function.
Diffstat (limited to 'usr.sbin/sysinstall/Makefile')
-rw-r--r-- | usr.sbin/sysinstall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/Makefile b/usr.sbin/sysinstall/Makefile index 5ce9b34..751d10c 100644 --- a/usr.sbin/sysinstall/Makefile +++ b/usr.sbin/sysinstall/Makefile @@ -96,7 +96,7 @@ keymap.h: echo -n ' { "'$$map'", ' >> keymap.tmp ; \ echo "&keymap_$$map }," | tr '[-.]' '_' >> keymap.tmp ; \ done - ( echo " { 0 }"; echo "};" ; echo "" ) >> keymap.tmp + ( echo " { NULL, NULL }"; echo "};" ; echo "" ) >> keymap.tmp mv keymap.tmp keymap.h countries.h: ${.CURDIR}/../../share/misc/iso3166 |