From f132fcf636361009b4125827351ef01556d49b31 Mon Sep 17 00:00:00 2001 From: Paul Fertser Date: Mon, 30 Sep 2013 13:31:57 +0400 Subject: Clean up many C99 integer types format specifiers This eliminates most of the warnings reported when building for arm-none-eabi (newlib). Hsiangkai, there're many similar warnings left in your nds32 files, I didn't have the nerve to clean them all, probably you could pick it up. Change-Id: Id3bbe2ed2e3f1396290e55bea4c45068165a4810 Signed-off-by: Paul Fertser Reviewed-on: http://openocd.zylin.com/1674 Tested-by: jenkins Reviewed-by: Spencer Oliver --- src/target/target.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/target/target.c') diff --git a/src/target/target.c b/src/target/target.c index 942dbc1c..d78f3b16 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -1796,7 +1796,7 @@ static int target_profiling_default(struct target *target, uint32_t *samples, gettimeofday(&now, NULL); if ((sample_count >= max_num_samples) || ((now.tv_sec >= timeout.tv_sec) && (now.tv_usec >= timeout.tv_usec))) { - LOG_INFO("Profiling completed. %d samples.", sample_count); + LOG_INFO("Profiling completed. %" PRIu32 " samples.", sample_count); break; } } @@ -3541,7 +3541,7 @@ COMMAND_HANDLER(handle_profile_command) return ERROR_FAIL; } - COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], offset); + COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], offset); /** * Some cores let us sample the PC without the @@ -3581,8 +3581,8 @@ COMMAND_HANDLER(handle_profile_command) bool with_range = false; if (CMD_ARGC == 4) { with_range = true; - COMMAND_PARSE_NUMBER(uint, CMD_ARGV[2], start_address); - COMMAND_PARSE_NUMBER(uint, CMD_ARGV[3], end_address); + COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], start_address); + COMMAND_PARSE_NUMBER(u32, CMD_ARGV[3], end_address); } write_gmon(samples, num_of_sampels, CMD_ARGV[1], @@ -5439,7 +5439,7 @@ COMMAND_HANDLER(handle_fast_load_image_command) fastload[i].data = malloc(length); if (fastload[i].data == NULL) { free(buffer); - command_print(CMD_CTX, "error allocating buffer for section (%d bytes)", + command_print(CMD_CTX, "error allocating buffer for section (%" PRIu32 " bytes)", length); retval = ERROR_FAIL; break; -- cgit v1.2.3-18-g5258