From cf9fbcccbc16d881f97f2f98e46b693e2364922d Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 26 Jan 2009 16:41:46 -0500 Subject: [PATCH] e2fsck: Add missing newlines when reporting errors in pass 3A Signed-off-by: "Theodore Ts'o" --- e2fsck/problem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 3f53350..8293475 100644 --- a/e2fsck/problem.c +++ b/e2fsck/problem.c @@ -1417,12 +1417,12 @@ static struct e2fsck_problem problem_table[] = { /* Error iterating over directories */ { PR_3A_OPTIMIZE_ITER, - N_("Failed to create dirs_to_hash iterator: %m"), + N_("Failed to create dirs_to_hash iterator: %m\n"), PROMPT_NONE, 0 }, /* Error rehash directory */ { PR_3A_OPTIMIZE_DIR_ERR, - N_("Failed to optimize directory %q (%d): %m"), + N_("Failed to optimize directory %q (%d): %m\n"), PROMPT_NONE, 0 }, /* Rehashing dir header */ -- 1.8.3.1