summaryrefslogtreecommitdiff
path: root/resize
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2011-10-08 13:32:00 -0400
committerTheodore Ts'o <tytso@mit.edu>2011-10-08 13:32:00 -0400
commit84888e55438c7aa70d5866c203c06aea7576542e (patch)
treede4777daea70b8375e5148323a0b40fff09af401 /resize
parent9d0be127e94c7490a13d68400b64194025638638 (diff)
downloade2fsprogs-84888e55438c7aa70d5866c203c06aea7576542e.tar.gz
Fix spelling errors pointed out by translators
Also remove the _("<foo>") marker from a string that was all numbers and hence didn't need punctuation. Thanks to Philipp Thomas and Goeran Uddeborg for reporting these buglets. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'resize')
-rw-r--r--resize/extent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/resize/extent.c b/resize/extent.c
index 8f206e97..ec81b944 100644
--- a/resize/extent.c
+++ b/resize/extent.c
@@ -203,7 +203,7 @@ void ext2fs_extent_dump(ext2_extent extent, FILE *out)
fprintf(out, _("#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"),
extent->num, extent->size, extent->cursor, extent->sorted);
for (i=0, ent=extent->list; i < extent->num; i++, ent++) {
- fprintf(out, _("#\t\t %llu -> %llu (%llu)\n"), ent->old_loc,
+ fprintf(out, "#\t\t %llu -> %llu (%llu)\n", ent->old_loc,
ent->new_loc, ent->size);
}
}