Whamcloud - gitweb
e2fsck: Fix obvious typo in an "internal error" message
authorTheodore Ts'o <tytso@mit.edu>
Wed, 12 Mar 2008 16:12:50 +0000 (12:12 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 12 Mar 2008 16:12:50 +0000 (12:12 -0400)
Thanks to Philipp Thomas for pointing this out.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
e2fsck/pass1b.c

index 118f956..dab3134 100644 (file)
@@ -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);
@@ -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;