summaryrefslogtreecommitdiffstats
path: root/common/bootm.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-06-02 17:18:45 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-06-05 09:35:31 +0200
commit8f8a18906b8280645a5ee560de78b00799eef767 (patch)
treebae6325c4d7d52368f30b334e02cc4166f49b5d6 /common/bootm.c
parent0831642edc4cd48b03b72df44b17180c22f338bd (diff)
downloadbarebox-8f8a18906b8280645a5ee560de78b00799eef767.tar.gz
barebox-8f8a18906b8280645a5ee560de78b00799eef767.tar.xz
fix format specifiers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/bootm.c')
-rw-r--r--common/bootm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bootm.c b/common/bootm.c
index 871959c547..71390cb845 100644
--- a/common/bootm.c
+++ b/common/bootm.c
@@ -312,7 +312,7 @@ static int bootm_open_oftree(struct image_data *data, const char *oftree, int nu
static void bootm_print_info(struct image_data *data)
{
if (data->os_res)
- printf("OS image is at 0x%08x-0x%08x\n",
+ printf("OS image is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n",
data->os_res->start,
data->os_res->end);
else
@@ -329,7 +329,7 @@ static void bootm_print_info(struct image_data *data)
printf(", multifile image %d", data->initrd_num);
printf("\n");
if (data->initrd_res)
- printf("initrd is at 0x%08x-0x%08x\n",
+ printf("initrd is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n",
data->initrd_res->start,
data->initrd_res->end);
else