Browse Source

C99 printf() -Werror fixes

git-svn-id: svn://svn.berlios.de/openocd/trunk@2323 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
duane 15 years ago
parent
commit
19a678834d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/target/mips_ejtag.c

+ 2
- 2
src/target/mips_ejtag.c View File

@@ -211,7 +211,7 @@ int mips_ejtag_enter_debug(mips_ejtag_t *ejtag_info)
/* break bit will be cleared by hardware */
ejtag_ctrl = ejtag_info->ejtag_ctrl;
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
LOG_DEBUG("ejtag_ctrl: 0x%8.8x", ejtag_ctrl);
LOG_DEBUG("ejtag_ctrl: 0x%8.8" PRIx32 "", ejtag_ctrl);
if((ejtag_ctrl & EJTAG_CTRL_BRKST) == 0)
LOG_DEBUG("Failed to enter Debug Mode!");

@@ -261,7 +261,7 @@ int mips_ejtag_init(mips_ejtag_t *ejtag_info)
uint32_t ejtag_version;

mips_ejtag_get_impcode(ejtag_info, &ejtag_info->impcode);
LOG_DEBUG("impcode: 0x%8.8x", ejtag_info->impcode);
LOG_DEBUG("impcode: 0x%8.8" PRIx32 "", ejtag_info->impcode);

/* get ejtag version */
ejtag_version = ((ejtag_info->impcode >> 29) & 0x07);


Loading…
Cancel
Save