Skip to content

Commit

Permalink
e2fsck: Fix obvious typo in an "internal error" message
Browse files Browse the repository at this point in the history
Thanks to Philipp Thomas for pointing this out.

Signed-off-by: "Theodore Ts'o" <[email protected]>
  • Loading branch information
tytso committed Mar 12, 2008
1 parent 150ca0b commit 46d9a74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2fsck/pass1b.c
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ static int delete_file_block(ext2_filsys fs,
decrement_badcount(ctx, *block_nr, p);
} else
com_err("delete_file_block", 0,
_("internal error; can't find dup_blk for %u\n"),
_("internal error: can't find dup_blk for %u\n"),
*block_nr);
} else {
ext2fs_unmark_block_bitmap(ctx->block_found_map, *block_nr);
Expand Down Expand Up @@ -700,7 +700,7 @@ static int clone_file_block(ext2_filsys fs,
return BLOCK_CHANGED;
} else
com_err("clone_file_block", 0,
_("internal error; can't find dup_blk for %u\n"),
_("internal error: can't find dup_blk for %u\n"),
*block_nr);
}
return 0;
Expand Down

0 comments on commit 46d9a74

Please sign in to comment.