summaryrefslogtreecommitdiffstats
path: root/common/cmd_reiser.c
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2013-10-10 01:32:27 +0200
committerTom Rini <trini@ti.com>2013-11-08 15:25:13 -0500
commit2e18cb267a32281504f7719020c81d38d53dab18 (patch)
tree960d0cbdc239e021bf68474ef4103a8f08d6ac31 /common/cmd_reiser.c
parent7cdebc3289b05b355dcd718688cf3c0cc83ddb25 (diff)
downloadtalos-obmc-uboot-2e18cb267a32281504f7719020c81d38d53dab18.tar.gz
talos-obmc-uboot-2e18cb267a32281504f7719020c81d38d53dab18.zip
cmd_reiser: normalize 'file not found' errors
Signed-off-by: Luka Perkov <luka@openwrt.org>
Diffstat (limited to 'common/cmd_reiser.c')
-rw-r--r--common/cmd_reiser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_reiser.c b/common/cmd_reiser.c
index b9d2449e33..887156486a 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)) {
OpenPOWER on IntegriCloud