Fix several format specifiers errors exposed by arm-none-eabi
Change-Id: I1fe5c5c0b22cc23deedcf13ad5183c957551a1b7 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/2719 Tested-by: jenkins
This commit is contained in:
@@ -512,8 +512,8 @@ static int sim3x_flash_write(struct flash_bank *bank, const uint8_t * buffer, ui
|
||||
"for padding buffer");
|
||||
return ERROR_FAIL;
|
||||
}
|
||||
LOG_INFO("odd number of bytes to write (%d), extending to %d "
|
||||
"and padding with 0xff", old_count, count);
|
||||
LOG_INFO("odd number of bytes to write (%" PRIu32 "), extending to %" PRIu32
|
||||
" and padding with 0xff", old_count, count);
|
||||
|
||||
new_buffer[count - 1] = 0xff;
|
||||
buffer = memcpy(new_buffer, buffer, old_count);
|
||||
|
||||
Reference in New Issue
Block a user