diff options
Diffstat (limited to 'common/cmd_cramfs.c')
| -rw-r--r-- | common/cmd_cramfs.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/common/cmd_cramfs.c b/common/cmd_cramfs.c index e7f496e4e..0e43ab67c 100644 --- a/common/cmd_cramfs.c +++ b/common/cmd_cramfs.c @@ -146,11 +146,9 @@ int do_cramfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  		size = cramfs_load ((char *) offset, &part, filename);  	if (size > 0) { -		char buf[10];  		printf("### CRAMFS load complete: %d bytes loaded to 0x%lx\n",  			size, offset); -		sprintf(buf, "%x", size); -		setenv("filesize", buf); +		setenv_hex("filesize", size);  	} else {  		printf("### CRAMFS LOAD ERROR<%x> for %s!\n", size, filename);  	} |