]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cmd_reiser: normalize 'file not found' errors
authorLuka Perkov <luka@openwrt.org>
Wed, 9 Oct 2013 23:32:27 +0000 (01:32 +0200)
committerTom Rini <trini@ti.com>
Fri, 8 Nov 2013 20:25:13 +0000 (15:25 -0500)
Signed-off-by: Luka Perkov <luka@openwrt.org>
common/cmd_reiser.c

index b9d2449e332055b904f2afa4956c3217367544c6..887156486a136af8235e8d25b54f582c0ecd7ca4 100644 (file)
@@ -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)) {