From: Manish Katiyar Date: Sun, 8 Mar 2009 18:15:31 +0000 (+0530) Subject: debugfs: Fix typos in logdump's error messages X-Git-Tag: v1.41.5~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5bde7959ba025213fca56f1eba395a99274ad54;p=thirdparty%2Fe2fsprogs.git 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 --- diff --git a/debugfs/logdump.c b/debugfs/logdump.c index 69539e240..4818bc65b 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; }