summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1998-08-12 06:07:43 +0000
committercharnier <charnier@FreeBSD.org>1998-08-12 06:07:43 +0000
commit235b27cb8f07021d421f50ffdf3d09e2b30c613d (patch)
tree37cec98065d2af01e67f582356d9b9f697e606c3 /sbin
parent5996cf05e621798b7ccad623eaa961577d18ae3c (diff)
downloadFreeBSD-src-235b27cb8f07021d421f50ffdf3d09e2b30c613d.zip
FreeBSD-src-235b27cb8f07021d421f50ffdf3d09e2b30c613d.tar.gz
Forgot to remove a ';' in my previous commit.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/newfs/mkfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/newfs/mkfs.c b/sbin/newfs/mkfs.c
index b931f05..367a73d 100644
--- a/sbin/newfs/mkfs.c
+++ b/sbin/newfs/mkfs.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mkfs.c 8.11 (Berkeley) 5/3/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: mkfs.c,v 1.24 1998/07/15 06:28:04 charnier Exp $";
#endif /* not lint */
#include <err.h>
@@ -1217,7 +1217,7 @@ calloc(size, numelm)
caddr_t base;
size *= numelm;
- if ((base = malloc(size)) == NULL);
+ if ((base = malloc(size)) == NULL)
return (NULL);
memset(base, 0, size);
return (base);
OpenPOWER on IntegriCloud