aboutsummaryrefslogtreecommitdiff
path: root/src/target/arm946e.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/arm946e.c')
-rw-r--r--src/target/arm946e.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/target/arm946e.c b/src/target/arm946e.c
index 5c85845d..fb50d694 100644
--- a/src/target/arm946e.c
+++ b/src/target/arm946e.c
@@ -596,7 +596,7 @@ static int jim_arm946e_cp15(Jim_Interp *interp, int argc, Jim_Obj * const *argv)
if (retval != ERROR_OK)
return JIM_ERR;
char buf[20];
- sprintf(buf, "0x%08x", value);
+ sprintf(buf, "0x%08" PRIx32, value);
/* Return value in hex format */
Jim_SetResultString(interp, buf, -1);
} else if (argc == 3) {
@@ -643,7 +643,8 @@ COMMAND_HANDLER(arm946e_handle_idcache)
if (csize == 0)
command_print(CMD_CTX, "%s-cache absent", icache ? "I" : "D");
else
- command_print(CMD_CTX, "%s-cache size: %dK, %s", icache ? "I" : "D", csize, bena ? "enabled" : "disabled");
+ command_print(CMD_CTX, "%s-cache size: %" PRIu32 "K, %s",
+ icache ? "I" : "D", csize, bena ? "enabled" : "disabled");
return ERROR_OK;
}