diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-10 13:16:09 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-10 13:16:09 +0200 |
commit | 06c53beae1a726e707971c555613f09b270a2461 (patch) | |
tree | 3e0d99e3062d27b8e3b99faf14e2be63fdfcff3e /common/cmd_bootm.c | |
parent | c4b81f3238d77a4df343bd70ddfb7ebd29ca1dda (diff) | |
download | u-boot-imx-06c53beae1a726e707971c555613f09b270a2461.zip u-boot-imx-06c53beae1a726e707971c555613f09b270a2461.tar.gz u-boot-imx-06c53beae1a726e707971c555613f09b270a2461.tar.bz2 |
Fix some more print() format errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r-- | common/cmd_bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 959689e..f701ab6 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -613,7 +613,7 @@ static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] return NULL; } - debug (" kernel data at 0x%08lx, len = 0x%08lx (%d)\n", + debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n", *os_data, *os_len, *os_len); return (void *)img_addr; |