From: Luka Perkov Date: Wed, 9 Oct 2013 23:32:28 +0000 (+0200) Subject: cmd_zfs: normalize 'file not found' errors X-Git-Tag: v2014.01-rc1~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01adbce2aa496ff0704bc2b7c3e4280c0e9a8657;p=platform%2Fkernel%2Fu-boot.git cmd_zfs: normalize 'file not found' errors Signed-off-by: Luka Perkov --- diff --git a/common/cmd_zfs.c b/common/cmd_zfs.c index 9110868..0aed29e 100644 --- a/common/cmd_zfs.c +++ b/common/cmd_zfs.c @@ -95,7 +95,7 @@ static int do_zfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[] memset(&zfile, 0, sizeof(zfile)); zfile.device = &vdev; if (zfs_open(&zfile, filename)) { - printf("** File not found %s\n", filename); + printf("** File not found %s **\n", filename); return 1; }