summaryrefslogtreecommitdiff
path: root/cpu/ixp
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-07-13 23:07:35 +0200
committerWolfgang Denk <wd@denx.de>2008-07-13 23:07:35 +0200
commit25dbe98abb686d8210e1731fba85ced7d3ce874c (patch)
tree88737445b98062cf02338ab011f5a5efc28ea3bf /cpu/ixp
parentd5996dd555edf52721b7691a4c59de016251ed39 (diff)
Fix some more printf() format issues.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'cpu/ixp')
-rw-r--r--cpu/ixp/npe/npe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ixp/npe/npe.c b/cpu/ixp/npe/npe.c
index a33b95697..892096b26 100644
--- a/cpu/ixp/npe/npe.c
+++ b/cpu/ixp/npe/npe.c
@@ -67,7 +67,7 @@ static void *npe_alloc(int size)
p = npe_alloc_free;
npe_alloc_free += size;
} else {
- printf("%s: failed (count=%d, size=%d)!\n", count, size);
+ printf("npe_alloc: failed (count=%d, size=%d)!\n", count, size);
}
return p;
}