summaryrefslogtreecommitdiff
path: root/misc/e2image.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2005-01-19 02:27:09 -0500
committerTheodore Ts'o <tytso@mit.edu>2005-01-19 02:27:09 -0500
commite99decb0441cbf8fc1f33b254e510273a6095fd4 (patch)
tree0e962af31dac00aae49e4dbc6c394322400e2a2d /misc/e2image.c
parent4ee558fc3b3ed88e533e765f6fec67742d412e6c (diff)
downloade2fsprogs-e99decb0441cbf8fc1f33b254e510273a6095fd4.tar.gz
Remove debugging printf from e2image -s's code.
Diffstat (limited to 'misc/e2image.c')
-rw-r--r--misc/e2image.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/misc/e2image.c b/misc/e2image.c
index cd71431b..5bca6b59 100644
--- a/misc/e2image.c
+++ b/misc/e2image.c
@@ -223,8 +223,6 @@ static int process_dir_block(ext2_filsys fs EXT2FS_ATTR((unused)),
p = (struct process_block_struct *) priv_data;
- printf("block %d, ino %d, is_dir=%d\n", *block_nr, p->ino, p->is_dir);
-
ext2fs_mark_block_bitmap(meta_block_map, *block_nr);
if (scramble_block_map && p->is_dir && blockcnt >= 0)
ext2fs_mark_block_bitmap(scramble_block_map, *block_nr);
@@ -345,8 +343,6 @@ static void scramble_dir_block(ext2_filsys fs, blk_t blk, char *buf)
struct ext2_dir_entry_2 *dirent;
int rec_len, id, len;
- printf("Scrambling directory block %d\n", blk);
-
end = buf + fs->blocksize;
for (p = buf; p < end-8; p += rec_len) {
dirent = (struct ext2_dir_entry_2 *) p;