diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-07-12 14:36:34 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 16:55:00 +0200 |
commit | 0a5676befb0c590212a53f7627fa5d0d8a84bf34 (patch) | |
tree | ea6812919abaf744be8c7b5b904dc78244cbaa4d /board/armadillo | |
parent | 18c8a28aad49803780bd8d52432ded528e37e701 (diff) |
Fix some more printf() format issues.
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/armadillo')
-rw-r--r-- | board/armadillo/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/armadillo/flash.c b/board/armadillo/flash.c index 037a6430dab..8518856cb1c 100644 --- a/board/armadillo/flash.c +++ b/board/armadillo/flash.c @@ -279,7 +279,7 @@ int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt) int i, rc; wp = (addr & ~1); /* get lower word aligned address */ - printf ("Writing %d short data to 0x%p from 0x%p.\n ", cnt, wp, src); + printf ("Writing %lu short data to 0x%lx from 0x%p.\n ", cnt, wp, src); /* * handle unaligned start bytes |