From: <du...@ma...> - 2009-06-21 05:22:13
|
Author: duane Date: 2009-06-21 05:22:10 +0200 (Sun, 21 Jun 2009) New Revision: 2344 Modified: trunk/src/flash/str9x.c Log: C99 printf() -Werror fixes Modified: trunk/src/flash/str9x.c =================================================================== --- trunk/src/flash/str9x.c 2009-06-21 03:22:04 UTC (rev 2343) +++ trunk/src/flash/str9x.c 2009-06-21 03:22:10 UTC (rev 2344) @@ -514,7 +514,7 @@ if (offset & 0x1) { - LOG_WARNING("offset 0x%x breaks required 2-byte alignment", offset); + LOG_WARNING("offset 0x%" PRIx32 " breaks required 2-byte alignment", offset); return ERROR_FLASH_DST_BREAKS_ALIGNMENT; } |