C99 printf() -Werror fixes
git-svn-id: svn://svn.berlios.de/openocd/trunk@2297 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
836b6c18f0
commit
245b0213f5
|
@ -138,7 +138,7 @@ static int virtex2_read_stat(struct pld_device_s *pld_device, uint32_t *status)
|
|||
|
||||
jtag_execute_queue();
|
||||
|
||||
LOG_DEBUG("status: 0x%8.8x", *status);
|
||||
LOG_DEBUG("status: 0x%8.8" PRIx32 "", *status);
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
@ -213,7 +213,7 @@ static int virtex2_handle_read_stat_command(struct command_context_s *cmd_ctx,
|
|||
|
||||
virtex2_read_stat(device, &status);
|
||||
|
||||
command_print(cmd_ctx, "virtex2 status register: 0x%8.8x", status);
|
||||
command_print(cmd_ctx, "virtex2 status register: 0x%8.8" PRIx32 "", status);
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
|
|
@ -128,7 +128,7 @@ int xilinx_read_bit_file(xilinx_bit_file_t *bit_file, char *filename)
|
|||
if (read_section(input_file, 4, 'e', &bit_file->length, &bit_file->data) != ERROR_OK)
|
||||
return ERROR_PLD_FILE_LOAD_FAILED;
|
||||
|
||||
LOG_DEBUG("bit_file: %s %s %s,%s %i", bit_file->source_file, bit_file->part_name,
|
||||
LOG_DEBUG("bit_file: %s %s %s,%s %" PRIi32 "", bit_file->source_file, bit_file->part_name,
|
||||
bit_file->date, bit_file->time, bit_file->length);
|
||||
|
||||
fclose(input_file);
|
||||
|
|
Loading…
Reference in New Issue