From a5bde7959ba025213fca56f1eba395a99274ad54 Mon Sep 17 00:00:00 2001 From: Manish Katiyar Date: Sun, 8 Mar 2009 23:45:31 +0530 Subject: [PATCH] debugfs: Fix typos in logdump's error messages Below patch fixes some trivial typos found during code reading Signed-off-by : Manish Katiyar Signed-off-by: Theodore Ts'o --- debugfs/logdump.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debugfs/logdump.c b/debugfs/logdump.c index 69539e2..4818bc6 100644 --- a/debugfs/logdump.c +++ b/debugfs/logdump.c @@ -300,9 +300,10 @@ static int read_journal_block(const char *cmd, struct journal_source *source, } if (retval) - com_err(cmd, retval, "while while reading journal"); + com_err(cmd, retval, "while reading journal"); else if (*got != (unsigned int) size) { - com_err(cmd, 0, "short read (read %d, expected %d) while while reading journal", *got, size); + com_err(cmd, 0, "short read (read %d, expected %d) " + "while reading journal", *got, size); retval = -1; } -- 1.8.3.1