summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2003-12-06 21:46:53 +0000
committerderaadt <deraadt@openbsd.org>2003-12-06 21:46:53 +0000
commit214f6ba5ed944ff06767268341e3e9c7c0d1da33 (patch)
treebc14d8c66c4aeaa7a84f2ddf0bd85d9e4ffe5cb6
parentFix speling here too so t/pod/pod2usage.t passes; noticed by drahn@ (diff)
downloadwireguard-openbsd-214f6ba5ed944ff06767268341e3e9c7c0d1da33.tar.xz
wireguard-openbsd-214f6ba5ed944ff06767268341e3e9c7c0d1da33.zip
NULL not 0 at end of pdevinit[]
-rw-r--r--usr.sbin/config/mkioconf.c4
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);
}