diff options
author | Luka Perkov <luka@openwrt.org> | 2013-10-10 01:32:28 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-08 15:25:13 -0500 |
commit | 01adbce2aa496ff0704bc2b7c3e4280c0e9a8657 (patch) | |
tree | 70d5884657501e1ec7372042f034b29c9b4b6da6 | |
parent | 2e18cb267a32281504f7719020c81d38d53dab18 (diff) | |
download | u-boot-imx-01adbce2aa496ff0704bc2b7c3e4280c0e9a8657.zip u-boot-imx-01adbce2aa496ff0704bc2b7c3e4280c0e9a8657.tar.gz u-boot-imx-01adbce2aa496ff0704bc2b7c3e4280c0e9a8657.tar.bz2 |
cmd_zfs: normalize 'file not found' errors
Signed-off-by: Luka Perkov <luka@openwrt.org>
-rw-r--r-- | common/cmd_zfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |