Forgot to remove a ';' in my previous commit.

This commit is contained in:
Philippe Charnier 1998-08-12 06:07:43 +00:00
parent c42a51a6ff
commit e791a73343
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38255

View File

@ -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);