NOR: messaging fix
Fix syntax error: default to "wrote N bytes"; writing a single byte is an unusual case, not the normal one.__archive__
parent
396b0f3012
commit
df58812b52
|
@ -439,7 +439,7 @@ COMMAND_HANDLER(handle_flash_write_image_command)
|
|||
|
||||
if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
|
||||
{
|
||||
command_print(CMD_CTX, "wrote %" PRIu32 " byte from file %s "
|
||||
command_print(CMD_CTX, "wrote %" PRIu32 " bytes from file %s "
|
||||
"in %fs (%0.3f kb/s)", written, CMD_ARGV[0],
|
||||
duration_elapsed(&bench), duration_kbps(&bench, written));
|
||||
}
|
||||
|
@ -625,7 +625,7 @@ COMMAND_HANDLER(handle_flash_write_bank_command)
|
|||
|
||||
if ((ERROR_OK == retval) && (duration_measure(&bench) == ERROR_OK))
|
||||
{
|
||||
command_print(CMD_CTX, "wrote %zu byte from file %s to flash bank %u"
|
||||
command_print(CMD_CTX, "wrote %zu bytes from file %s to flash bank %u"
|
||||
" at offset 0x%8.8" PRIx32 " in %fs (%0.3f kb/s)",
|
||||
fileio.size, CMD_ARGV[1], p->bank_number, offset,
|
||||
duration_elapsed(&bench), duration_kbps(&bench, fileio.size));
|
||||
|
|
Loading…
Reference in New Issue