BUILD: remove cygwin gcc 3.4.4 build warnings

Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
This commit is contained in:
Spencer Oliver
2010-01-20 23:09:20 +00:00
parent 2a0c9b08d7
commit dbecb13b24
3 changed files with 4 additions and 4 deletions

View File

@@ -1675,8 +1675,8 @@ static int cortex_m3_examine(struct target *target)
return retval;
if (((cpuid >> 4) & 0xc3f) == 0xc23)
LOG_DEBUG("Cortex-M3 r%dp%d processor detected",
(cpuid >> 20) & 0xf, (cpuid >> 0) & 0xf);
LOG_DEBUG("Cortex-M3 r%" PRId8 "p%" PRId8 " processor detected",
(uint8_t)((cpuid >> 20) & 0xf), (uint8_t)((cpuid >> 0) & 0xf));
LOG_DEBUG("cpuid: 0x%8.8" PRIx32 "", cpuid);
/* NOTE: FPB and DWT are both optional. */