[U-Boot] [PATCH 3/3] cmd_zfs: normalize 'file not found' errors
Luka Perkov
luka at openwrt.org
Thu Oct 10 01:32:28 CEST 2013
Signed-off-by: Luka Perkov <luka at openwrt.org>
---
common/cmd_zfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
}
--
1.8.4
More information about the U-Boot
mailing list