From: Wolfgang Denk <wd@pollux.(none)>
Date: Sat, 24 Sep 2005 23:20:38 +0000 (+0200)
Subject: Fix error handling in tools/env/fw_env.c
X-Git-Tag: v2025.01-rc5-pxa1908~23231
X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-logo.png?a=commitdiff_plain;h=e2146b6aea0de16e55530cc5ff58fb626d9870cd;p=u-boot.git

Fix error handling in tools/env/fw_env.c
Patch by Ara Avanesyan, 01 Feb 2005
---

diff --git a/CHANGELOG b/CHANGELOG
index abf5d18eb9..6c5c15c683 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes for U-Boot 1.1.4:
 ======================================================================
 
+* Fix error handling in tools/env/fw_env.c
+  Patch by Ara Avanesyan, 01 Feb 2005
+
 * Fix MGT5100 PSC baudrate calculation
   Patch by Sebastian Schau, 27 Jan 2005
 
diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c
index 09b8b5d7a7..74c0498d5a 100644
--- a/tools/env/fw_env.c
+++ b/tools/env/fw_env.c
@@ -726,7 +726,7 @@ static int parse_config ()
 	if (HaveRedundEnv && stat (DEVNAME (1), &st)) {
 		fprintf (stderr,
 			"Cannot access MTD device %s: %s\n",
-			DEVNAME (2), strerror (errno));
+			DEVNAME (1), strerror (errno));
 		return 1;
 	}
 	return 0;