diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-12 01:59:35 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-03-12 01:59:35 +0100 | 
| commit | dc013d464000635a5b8ae841c6e683f94a6bee3d (patch) | |
| tree | ae381c15180d16a1d30d4c5d0a7217741d8aaf64 /common/cmd_nand.c | |
| parent | 8ff0208d31223e36f7c038982589b448d7fdd217 (diff) | |
| download | olio-uboot-2014.01-dc013d464000635a5b8ae841c6e683f94a6bee3d.tar.xz olio-uboot-2014.01-dc013d464000635a5b8ae841c6e683f94a6bee3d.zip | |
Add loads of ntohl() in image header handling
Patch by Steven Scholz, 10 Jun 2005
Diffstat (limited to 'common/cmd_nand.c')
| -rw-r--r-- | common/cmd_nand.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_nand.c b/common/cmd_nand.c index bb51d91fb..21adb1b47 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -717,7 +717,7 @@ int do_nandboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  		cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));  		cnt -= SECTORSIZE;  	} else { -		printf ("\n** Bad Magic Number 0x%x **\n", hdr->ih_magic); +		printf ("\n** Bad Magic Number 0x%x **\n", ntohl(hdr->ih_magic));  		SHOW_BOOT_PROGRESS (-1);  		return 1;  	} |