diff mbox

[U-Boot,3/3] cmd_zfs: normalize 'file not found' errors

Message ID 1381361548-7792-3-git-send-email-luka@openwrt.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Luka Perkov Oct. 9, 2013, 11:32 p.m. UTC
Signed-off-by: Luka Perkov <luka@openwrt.org>
---
 common/cmd_zfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Nov. 8, 2013, 10:27 p.m. UTC | #1
On Thu, Oct 10, 2013 at 01:32:28AM +0200, Luka Perkov wrote:

> Signed-off-by: Luka Perkov <luka@openwrt.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

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;
 	}