|
From: <du...@ma...> - 2009-06-21 05:20:15
|
Author: duane
Date: 2009-06-21 05:20:12 +0200 (Sun, 21 Jun 2009)
New Revision: 2333
Modified:
trunk/src/flash/davinci_nand.c
Log:
C99 printf() -Werror fixes
Modified: trunk/src/flash/davinci_nand.c
===================================================================
--- trunk/src/flash/davinci_nand.c 2009-06-21 03:20:06 UTC (rev 2332)
+++ trunk/src/flash/davinci_nand.c 2009-06-21 03:20:12 UTC (rev 2333)
@@ -94,7 +94,7 @@
*/
target_read_u32(target, info->aemif + NANDFCR, &nandfcr);
if (!(nandfcr & (1 << info->chipsel))) {
- LOG_ERROR("chip address %08x not NAND-enabled?", info->data);
+ LOG_ERROR("chip address %08" PRIx32 " not NAND-enabled?", info->data);
return ERROR_NAND_OPERATION_FAILED;
}
|