diff options
author | charnier <charnier@FreeBSD.org> | 1998-06-15 07:07:21 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-06-15 07:07:21 +0000 |
commit | 07d25baf9d301d4d3b992e1580348ad73ce0894d (patch) | |
tree | ffaf174e4a683dcae9a8359aefb9854eea4bdab4 /sbin/fsck/inode.c | |
parent | 9d674a7e985bdb87f5fa37da111245b1e6f5f8f3 (diff) | |
download | FreeBSD-src-07d25baf9d301d4d3b992e1580348ad73ce0894d.zip FreeBSD-src-07d25baf9d301d4d3b992e1580348ad73ce0894d.tar.gz |
Correct use of .Nm. Add rcsid. Remove unused #includes. Use err(3).
Diffstat (limited to 'sbin/fsck/inode.c')
-rw-r--r-- | sbin/fsck/inode.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/fsck/inode.c b/sbin/fsck/inode.c index 74561c8..8d642c7 100644 --- a/sbin/fsck/inode.c +++ b/sbin/fsck/inode.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)inode.c 8.8 (Berkeley) 4/28/95"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <sys/param.h> @@ -339,7 +343,7 @@ resetinodebuf() } if (inodebuf == NULL && (inodebuf = (struct dinode *)malloc((unsigned)inobufsize)) == NULL) - errx(EEXIT, "Cannot allocate space for inode buffer"); + errx(EEXIT, "cannot allocate space for inode buffer"); while (nextino < ROOTINO) (void)getnextinode(nextino); } |