summaryrefslogtreecommitdiffstats
path: root/common/startup.c
diff options
context:
space:
mode:
authorKrzysztof Halasa <khc@pm.waw.pl>2010-12-21 00:08:03 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-12-21 09:02:40 +0100
commit1b6a3e363447043f4dee3bad47958b235dad2651 (patch)
tree1c32af6f77190ca903d4bb44ef2ca77758bb3e17 /common/startup.c
parentfdf5768a1b2eb8af6bf4de3e7e82fe9d87f7b03a (diff)
downloadbarebox-1b6a3e363447043f4dee3bad47958b235dad2651.tar.gz
barebox-1b6a3e363447043f4dee3bad47958b235dad2651.tar.xz
Silence few warnings.
Signed-off-by: Krzysztof HaƂasa <khc@pm.waw.pl> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/startup.c')
-rw-r--r--common/startup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/startup.c b/common/startup.c
index 84a59c5cae..0d7ccb9487 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -55,7 +55,7 @@ static void display_meminfo(void)
printf("Malloc space: 0x%08lx -> 0x%08lx (size %s)\n",
mstart, mend, size_human_readable(msize));
#ifdef CONFIG_ARM
- printf("Stack space : 0x%08lx -> 0x%08lx (size %s)\n",
+ printf("Stack space : 0x%08x -> 0x%08x (size %s)\n",
STACK_BASE, STACK_BASE + STACK_SIZE,
size_human_readable(STACK_SIZE));
#endif