9
0
Fork 0

Fix error handling in tools/env/fw_env.c

Patch by Ara Avanesyan, 01 Feb 2005
This commit is contained in:
Wolfgang Denk 2005-09-25 01:20:38 +02:00
parent 9f221d0738
commit e2146b6aea
2 changed files with 4 additions and 1 deletions

View File

@ -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

2
tools/env/fw_env.c vendored
View File

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