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/user.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/user.c')
-rw-r--r-- | usr.sbin/sysinstall/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/user.c b/usr.sbin/sysinstall/user.c index 1b0b845..ecee440 100644 --- a/usr.sbin/sysinstall/user.c +++ b/usr.sbin/sysinstall/user.c @@ -102,7 +102,7 @@ static Layout groupLayout[] = { { 18, 35, 0, 0, "CANCEL", "Select this if you wish to cancel this screen", &cancelbutton, BUTTONOBJ, NULL }, - { NULL }, + { 0 }, }; /* The user configuration menu. */ @@ -147,7 +147,7 @@ static Layout userLayout[] = { { 18, 35, 0, 0, "CANCEL", "Select this if you wish to cancel this screen", &cancelbutton, BUTTONOBJ, NULL }, - { NULL }, + { 0 }, }; /* whine */ |