diff options
author | bde <bde@FreeBSD.org> | 1997-03-12 16:49:28 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-12 16:49:28 +0000 |
commit | 3bd624b27a6f9ad7b1d8eb3e71b2ea409aa8d4a0 (patch) | |
tree | 078d6f0b4344674523ed7b7cbc33a466ea26db02 /sbin/fsck_ffs | |
parent | 70568e2da562c7eac7e830b32464e20cdef294b0 (diff) | |
download | FreeBSD-src-3bd624b27a6f9ad7b1d8eb3e71b2ea409aa8d4a0.zip FreeBSD-src-3bd624b27a6f9ad7b1d8eb3e71b2ea409aa8d4a0.tar.gz |
Finished (?) merging with Lite2: cleaned up #include mess.
Fixed misformatting in a comment.
Diffstat (limited to 'sbin/fsck_ffs')
-rw-r--r-- | sbin/fsck_ffs/dir.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/dir.c b/sbin/fsck_ffs/dir.c index 5662b6e..4b6999b 100644 --- a/sbin/fsck_ffs/dir.c +++ b/sbin/fsck_ffs/dir.c @@ -41,8 +41,7 @@ static const char sccsid[] = "@(#)dir.c 8.8 (Berkeley) 4/28/95"; #include <ufs/ufs/dinode.h> #include <ufs/ufs/dir.h> #include <ufs/ffs/fs.h> -#include <stdio.h> -#include <stdlib.h> + #include <err.h> #include <string.h> @@ -489,7 +488,7 @@ linkup(orphan, parentdir) pwarn("DIR I=%lu CONNECTED. ", orphan); if (parentdir != (ino_t)-1) { printf("PARENT WAS I=%lu\n", parentdir); - /* + /* * The parent directory, because of the ordering * guarantees, has had the link count incremented * for the child, but no entry was made. This |