C99 printf() -Werror fixes
git-svn-id: svn://svn.berlios.de/openocd/trunk@2322 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
de39cb7724
commit
5c82587a1e
|
@ -143,7 +143,7 @@ static int mips32_pracc_exec_read(mips32_pracc_context *ctx, uint32_t address)
|
||||||
* to start of debug vector */
|
* to start of debug vector */
|
||||||
|
|
||||||
data = 0;
|
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;
|
return ERROR_JTAG_DEVICE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -200,7 +200,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
|
||||||
}
|
}
|
||||||
else
|
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;
|
return ERROR_JTAG_DEVICE_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue