diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-08 19:04:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-08 19:04:26 +0000 |
commit | 889f3d21fbb021429b724ecdb8320c3eb9cde03f (patch) | |
tree | 46c1cb70beebf52095a1a30b6750b16f677a4aa0 /sbin/ncheck_ffs | |
parent | 8a0c24c71f1196b735373a9d574c7bfb8c7e2ee8 (diff) |
spacing
Diffstat (limited to 'sbin/ncheck_ffs')
-rw-r--r-- | sbin/ncheck_ffs/ncheck_ffs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ncheck_ffs/ncheck_ffs.c b/sbin/ncheck_ffs/ncheck_ffs.c index aa6cd1b8147..9bf00c74d6e 100644 --- a/sbin/ncheck_ffs/ncheck_ffs.c +++ b/sbin/ncheck_ffs/ncheck_ffs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncheck_ffs.c,v 1.22 2003/11/21 22:57:32 jmc Exp $ */ +/* $OpenBSD: ncheck_ffs.c,v 1.23 2004/08/08 19:04:25 deraadt Exp $ */ /*- * Copyright (c) 1995, 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> @@ -26,7 +26,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: ncheck_ffs.c,v 1.22 2003/11/21 22:57:32 jmc Exp $"; +static const char rcsid[] = "$OpenBSD: ncheck_ffs.c,v 1.23 2004/08/08 19:04:25 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -534,7 +534,7 @@ format_entry(const char *path, struct direct *dp) if (size <= dst - buf) { expand_buf: nsize = size << 1; - + if ((newbuf = realloc(buf, nsize)) == NULL) err(1, "realloc"); buf = newbuf; |