summaryrefslogtreecommitdiffstats
path: root/common/module.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-26 12:40:48 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-27 14:24:10 +0100
commita01e54d2015ea692e96f8909b3b1a75e0443445e (patch)
treec2313760cfa75a6bfb17f9524b78289847912fd1 /common/module.c
parentea53e1b5724d78bc6e5cf49d48bf33bdef74faa5 (diff)
downloadbarebox-a01e54d2015ea692e96f8909b3b1a75e0443445e.tar.gz
barebox-a01e54d2015ea692e96f8909b3b1a75e0443445e.tar.xz
treewide: fix format specifiers
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/module.c')
-rw-r--r--common/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/module.c b/common/module.c
index 4cb8ef39ff..109fe5cd00 100644
--- a/common/module.c
+++ b/common/module.c
@@ -104,7 +104,7 @@ static int simplify_symbols(Elf32_Shdr *sechdrs,
sym[i].st_value
= resolve_symbol(sechdrs,
strtab + sym[i].st_name);
- debug("undef : %20s 0x%08x 0x%08lx\n", strtab + sym[i].st_name, sym[i].st_value);
+ debug("undef : %20s 0x%08x\n", strtab + sym[i].st_name, sym[i].st_value);
/* Ok if resolved. */
if (sym[i].st_value != 0)