diff options
author | Simon Glass <sjg@chromium.org> | 2013-02-24 17:33:22 +0000 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-02-28 19:09:23 -0800 |
commit | 41ef372c1a2d344621c74aa4bce5cdb0970ba5f1 (patch) | |
tree | 9abdeda0b3b87a70e4f3929e83ddd15f4704377f /common/cmd_cramfs.c | |
parent | bfc59966431e6335fd5be0589eec073902cc7bb3 (diff) | |
download | u-boot-41ef372c1a2d344621c74aa4bce5cdb0970ba5f1.tar.gz u-boot-41ef372c1a2d344621c74aa4bce5cdb0970ba5f1.tar.xz u-boot-41ef372c1a2d344621c74aa4bce5cdb0970ba5f1.zip |
common: Use new numeric setenv functions
Use setenv_ulong(), setenv_hex() and setenv_addr() in common/
Signed-off-by: Simon Glass <sjg@chromium.org>
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 e7f496e4ea..0e43ab67c0 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); } |