Fix some more printf() format issues.

Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
Wolfgang Denk
2008-07-13 23:07:35 +02:00
parent d5996dd555
commit 25dbe98abb
5 changed files with 12 additions and 17 deletions

View File

@@ -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;
}