diff options
author | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /e2fsprogs/e2fsck.c | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.zip busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz |
Yet another silly little byte saving. couldn't -> cannot
Diffstat (limited to 'e2fsprogs/e2fsck.c')
-rw-r--r-- | e2fsprogs/e2fsck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c index 7ffc0d2..28139f4 100644 --- a/e2fsprogs/e2fsck.c +++ b/e2fsprogs/e2fsck.c @@ -9132,7 +9132,7 @@ static const struct e2fsck_problem problem_table[] = { /* Internal error: couldn't find dir_info */ { PR_2_NO_DIRINFO, - N_("Internal error: couldn't find dir_info for %i.\n"), + N_("Internal error: cannot find dir_info for %i.\n"), PROMPT_NONE, PR_FATAL }, /* Final rec_len is wrong */ @@ -9408,7 +9408,7 @@ static const struct e2fsck_problem problem_table[] = { /* Internal error: couldn't find dir_info */ { PR_3_NO_DIRINFO, - N_("Internal error: couldn't find dir_info for %i.\n"), + N_("Internal error: cannot find dir_info for %i.\n"), PROMPT_NONE, PR_FATAL }, /* Lost+found not a directory */ @@ -12915,7 +12915,7 @@ static void reserve_stdio_fds(void) if (fd > 2) break; if (fd < 0) { - fprintf(stderr, _("ERROR: Couldn't open " + fprintf(stderr, _("ERROR: Cannot open " "/dev/null (%s)\n"), strerror(errno)); break; |