mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
Fix error handling in tools/env/fw_env.c
Patch by Ara Avanesyan, 01 Feb 2005
This commit is contained in:
parent
9f221d0738
commit
e2146b6aea
@ -2,6 +2,9 @@
|
|||||||
Changes for U-Boot 1.1.4:
|
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
|
* Fix MGT5100 PSC baudrate calculation
|
||||||
Patch by Sebastian Schau, 27 Jan 2005
|
Patch by Sebastian Schau, 27 Jan 2005
|
||||||
|
|
||||||
|
2
tools/env/fw_env.c
vendored
2
tools/env/fw_env.c
vendored
@ -726,7 +726,7 @@ static int parse_config ()
|
|||||||
if (HaveRedundEnv && stat (DEVNAME (1), &st)) {
|
if (HaveRedundEnv && stat (DEVNAME (1), &st)) {
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Cannot access MTD device %s: %s\n",
|
"Cannot access MTD device %s: %s\n",
|
||||||
DEVNAME (2), strerror (errno));
|
DEVNAME (1), strerror (errno));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user