diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-06 21:46:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-12-06 21:46:54 +0000 |
commit | 810b2358064e97de65b9d2ed42055c0952e45a08 (patch) | |
tree | ac5dcafa7759c4d61eed2d3131079b17cf1c472f /usr.sbin/config/mkioconf.c | |
parent | aac3eea9889824ae18fc40dd1d519c074dd0a4f1 (diff) |
NULL not 0 at end of pdevinit[]
Diffstat (limited to 'usr.sbin/config/mkioconf.c')
-rw-r--r-- | usr.sbin/config/mkioconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/mkioconf.c b/usr.sbin/config/mkioconf.c index cf642a4d47e..ec75dd34148 100644 --- a/usr.sbin/config/mkioconf.c +++ b/usr.sbin/config/mkioconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkioconf.c,v 1.23 2003/09/26 17:01:25 deraadt Exp $ */ +/* $OpenBSD: mkioconf.c,v 1.24 2003/12/06 21:46:53 deraadt Exp $ */ /* $NetBSD: mkioconf.c,v 1.41 1996/11/11 14:18:49 mycroft Exp $ */ /* @@ -478,5 +478,5 @@ emitpseudo(FILE *fp) d->d_name, d->d_umax) < 0) return (1); } - return (fputs("\t{ 0, 0 }\n};\n", fp) < 0); + return (fputs("\t{ NULL, 0 }\n};\n", fp) < 0); } |