BUILD: remove cygwin gcc 3.4.4 build warnings
authorSpencer Oliver <ntfreak@users.sourceforge.net>
Wed, 20 Jan 2010 23:09:20 +0000 (23:09 +0000)
committerSpencer Oliver <ntfreak@users.sourceforge.net>
Wed, 20 Jan 2010 23:11:25 +0000 (23:11 +0000)
Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
src/target/cortex_m3.c
src/target/mips32_pracc.c
src/target/mips_m4k.c

index 762e3184c901151aedc230f8011919c3f07def2e..adce4d9c0591826cc1ec3809b5a83c9b2c396c30 100644 (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. */
index 11d5a43a317241e1c1f6d39e0583780c2466ff19..7d91d42ecade704405655245359f468441bb3ed6 100644 (file)
@@ -968,7 +968,7 @@ int mips32_pracc_fastdata_xfer(struct mips_ejtag *ejtag_info, struct working_are
        /* write program into RAM */
        mips32_pracc_write_mem32(ejtag_info, source->address, ARRAY_SIZE(handler_code), handler_code);
 
-       LOG_DEBUG("%s using 0x%.8x for write handler\n", __func__, source->address);
+       LOG_DEBUG("%s using 0x%.8" PRIx32 " for write handler\n", __func__, source->address);
 
        jmp_code[1] |= UPPER16(source->address);
        jmp_code[2] |= LOWER16(source->address);
index 1a65c50b1f318e4fa0a783217ef02093f8d385ce..5f5aa72ee3ee39e4b9d0b79865c2e63764edfd0c 100644 (file)
@@ -981,7 +981,7 @@ int mips_m4k_bulk_write_memory(struct target *target, uint32_t address, uint32_t
        int retval;
        int write = 1;
 
-       LOG_DEBUG("address: 0x%8.8x, count: 0x%8.8x", address, count);
+       LOG_DEBUG("address: 0x%8.8" PRIx32 ", count: 0x%8.8" PRIx32 "", address, count);
 
        if (target->state != TARGET_HALTED)
        {