aboutsummaryrefslogtreecommitdiffstats
path: root/debugfs/debugfs.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2000-08-18 15:08:37 +0000
committerTheodore Ts'o <tytso@mit.edu>2000-08-18 15:08:37 +0000
commit80bfaa3e40ae6ab00cc3d4d1f4c0eeefce0b1a96 (patch)
treee7aff65d1b0b1113cb46738d1bcc519ce93c5de7 /debugfs/debugfs.c
parentbd09eff9b2caaa3539c3ed119a067782714bffa2 (diff)
downloadandroid_external_e2fsprogs-80bfaa3e40ae6ab00cc3d4d1f4c0eeefce0b1a96.tar.gz
android_external_e2fsprogs-80bfaa3e40ae6ab00cc3d4d1f4c0eeefce0b1a96.tar.bz2
android_external_e2fsprogs-80bfaa3e40ae6ab00cc3d4d1f4c0eeefce0b1a96.zip
Many files:
Makefile.in: Update the make dependencies problem.c, problem.h: Add the problem codes: PR_0_ORPHAN_ILLEGAL_BLOCK_NUM, PR_0_ORPHAN_ALREADY_CLEARED_BLOCK, PR_0_ORPHAN_ILLEGAL_HEAD_INODE, PR_0_ORPHAN_ILLEGAL_INODE, PR_0_ORPHAN_INODE_INUSE super.c (release_inode_blocks, release_orphan_inodes, check_super_block): Add support for clearing orphaned inodes from the unmounted filesystem. journal.c (e2fsck_recover_ext3_journal): Remove the last orphan check; this is now handled in check_super_block --- non-journaled filesystems can use the orphan list in the future. Also, move the the re-opening of the filesystem to e2fsck_run_ext3_journal(). debugfs.c: debugfs.c (finish_range): Make sure the pager FILE pointer to use. configure, configure.in, ChangeLog: configure.in (JFS_DEBUG): Add support for --enable-jfs-debug
Diffstat (limited to 'debugfs/debugfs.c')
-rw-r--r--debugfs/debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c
index 12f2ce13..c847fc65 100644
--- a/debugfs/debugfs.c
+++ b/debugfs/debugfs.c
@@ -337,7 +337,7 @@ static void finish_range(struct list_blocks_struct *lb)
if (lb->first)
lb->first = 0;
else
- printf(", ");
+ fprintf(lb->f, ", ");
if (lb->first_block == lb->last_block)
fprintf(lb->f, "(%d):%d", lb->first_bcnt, lb->first_block);
else