commit | 94a4a1f9bf598130002e968f9849c6516a15f7e1 | [log] [tgz] |
---|---|---|
author | Luka Perkov <luka@openwrt.org> | Thu Oct 10 01:32:27 2013 +0200 |
committer | Tom Rini <trini@ti.com> | Fri Nov 08 15:25:13 2013 -0500 |
tree | 960d0cbdc239e021bf68474ef4103a8f08d6ac31 | |
parent | 8d66edc15fa2c9425e0ea2dd4bef3460b7a94a99 [diff] |
cmd_reiser: normalize 'file not found' errors Signed-off-by: Luka Perkov <luka@openwrt.org>
diff --git a/common/cmd_reiser.c b/common/cmd_reiser.c index b9d2449..8871564 100644 --- a/common/cmd_reiser.c +++ b/common/cmd_reiser.c
@@ -141,7 +141,7 @@ filelen = reiserfs_open(filename); if (filelen < 0) { - printf("** File not found %s\n", filename); + printf("** File not found %s **\n", filename); return 1; } if ((count < filelen) && (count != 0)) {