diff options
author | 1996-11-10 07:57:25 +0000 | |
---|---|---|
committer | 1996-11-10 07:57:25 +0000 | |
commit | 7ad4a1dcc19c6c272e5868b959545ead96ff2987 (patch) | |
tree | 129881965a0368e70014aab95dde0020b223a2b3 | |
parent | fix previous byte-order fix the correct way (diff) | |
download | wireguard-openbsd-7ad4a1dcc19c6c272e5868b959545ead96ff2987.tar.xz wireguard-openbsd-7ad4a1dcc19c6c272e5868b959545ead96ff2987.zip |
Fix the fucking typo.
-rw-r--r-- | usr.sbin/config/mkswap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/mkswap.c b/usr.sbin/config/mkswap.c index 6503326fb53..51a1aca0ace 100644 --- a/usr.sbin/config/mkswap.c +++ b/usr.sbin/config/mkswap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mkswap.c,v 1.5 1996/11/06 01:38:56 deraadt Exp $ */ +/* $OpenBSD: mkswap.c,v 1.6 1996/11/10 07:57:25 downsj Exp $ */ /* $NetBSD: mkswap.c,v 1.5 1996/08/31 20:58:27 mycroft Exp $ */ /* @@ -119,7 +119,7 @@ mkoneswap(cf) goto wrerror; mountroot = cf->cf_root->nv_str == s_nfs ? "nfs_mountroot" : "dk_mountroot"; - if (fprintf(fp, "extern int %s __P((void *));\n", mountroot) < 0) + if (fprintf(fp, "extern int %s __P((void));\n", mountroot) < 0) goto wrerror; if (fprintf(fp, "int (*mountroot) __P((void)) = %s;\n", mountroot) < 0) goto wrerror; |