diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-13 23:07:35 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 23:07:35 +0200 |
commit | 25dbe98abb686d8210e1731fba85ced7d3ce874c (patch) | |
tree | 88737445b98062cf02338ab011f5a5efc28ea3bf /cpu | |
parent | d5996dd555edf52721b7691a4c59de016251ed39 (diff) | |
download | u-boot-imx-25dbe98abb686d8210e1731fba85ced7d3ce874c.zip u-boot-imx-25dbe98abb686d8210e1731fba85ced7d3ce874c.tar.gz u-boot-imx-25dbe98abb686d8210e1731fba85ced7d3ce874c.tar.bz2 |
Fix some more printf() format issues.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ixp/npe/npe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ixp/npe/npe.c b/cpu/ixp/npe/npe.c index a33b956..892096b 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; } |