diff options
author | Luka Perkov <luka@openwrt.org> | 2013-10-10 01:32:27 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-08 15:25:13 -0500 |
commit | 2e18cb267a32281504f7719020c81d38d53dab18 (patch) | |
tree | 960d0cbdc239e021bf68474ef4103a8f08d6ac31 /common | |
parent | 7cdebc3289b05b355dcd718688cf3c0cc83ddb25 (diff) |
cmd_reiser: normalize 'file not found' errors
Signed-off-by: Luka Perkov <luka@openwrt.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_reiser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_reiser.c b/common/cmd_reiser.c index b9d2449e332..887156486a1 100644 --- a/common/cmd_reiser.c +++ b/common/cmd_reiser.c @@ -141,7 +141,7 @@ int do_reiserload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) 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)) { |