diff options
author | bde <bde@FreeBSD.org> | 2004-03-11 11:58:16 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-03-11 11:58:16 +0000 |
commit | 0016f83af98e16cda533c5adf275ca76c3ac2362 (patch) | |
tree | 873c65073bc4a50436133a5678acbe7ad4856ddc /usr.sbin/sysinstall/tcpip.c | |
parent | be31ea68bb3288af5b81dbc34787a3377ee2ef03 (diff) | |
download | FreeBSD-src-0016f83af98e16cda533c5adf275ca76c3ac2362.zip FreeBSD-src-0016f83af98e16cda533c5adf275ca76c3ac2362.tar.gz |
Fixed assorted misuses of NULL in integer context.
Diffstat (limited to 'usr.sbin/sysinstall/tcpip.c')
-rw-r--r-- | usr.sbin/sysinstall/tcpip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/tcpip.c b/usr.sbin/sysinstall/tcpip.c index 2f9dc8d..db1539d 100644 --- a/usr.sbin/sysinstall/tcpip.c +++ b/usr.sbin/sysinstall/tcpip.c @@ -103,7 +103,7 @@ static Layout layout[] = { { 19, 35, 0, 0, "CANCEL", "Select this if you wish to cancel this screen", &cancelbutton, BUTTONOBJ, NULL }, - { NULL }, + { 0 }, }; #define _validByte(b) ((b) >= 0 && (b) <= 255) |