summaryrefslogtreecommitdiffstats
path: root/common/cmd_bootm.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-09-08 22:10:28 +0200
committerWolfgang Denk <wd@denx.de>2008-09-08 22:39:23 +0200
commit9863a15a98f23b79f34a0e4f9e465bc6df5d504d (patch)
treeeb116467d18e784905b794ca7aa4e0a2a4c430d9 /common/cmd_bootm.c
parent4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726 (diff)
downloadtalos-obmc-uboot-9863a15a98f23b79f34a0e4f9e465bc6df5d504d.tar.gz
talos-obmc-uboot-9863a15a98f23b79f34a0e4f9e465bc6df5d504d.zip
common/cmd_bootm.c: fix printf() format warnings
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r--common/cmd_bootm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 751f5b99d4..8dbab02b87 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -337,13 +337,13 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
return BOOTM_ERR_UNIMPLEMENTED;
}
puts ("OK\n");
- debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, load_end);
+ debug (" kernel loaded at 0x%08lx, end = 0x%8p\n", load, load_end);
if (boot_progress)
show_boot_progress (7);
if ((load < blob_end) && (*load_end > blob_start)) {
debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
- debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, load_end);
+ debug ("images.os.load = 0x%lx, load_end = 0x%p\n", load, load_end);
return BOOTM_ERR_OVERLAP;
}
OpenPOWER on IntegriCloud