Browse Source

C99 printf() -Werror fixes

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

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

@@ -143,7 +143,7 @@ static int mips32_pracc_exec_read(mips32_pracc_context *ctx, uint32_t address)
* to start of debug vector */
data = 0;
LOG_ERROR("Error reading unexpected address %8.8x", address);
LOG_ERROR("Error reading unexpected address %8.8" PRIx32 "", address);
return ERROR_JTAG_DEVICE_ERROR;
}
@@ -200,7 +200,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
}
else
{
LOG_ERROR("Error writing unexpected address %8.8x", address);
LOG_ERROR("Error writing unexpected address %8.8" PRIx32 "", address);
return ERROR_JTAG_DEVICE_ERROR;
}


Loading…
Cancel
Save