From: David Brownell Date: Sat, 26 Dec 2009 18:24:39 +0000 (-0800) Subject: NOR: messaging fix X-Git-Tag: v0.4.0-rc2~190 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=df58812b528c9b7857d8bde8f3eea4ad46ed034f;p=openocd NOR: messaging fix Fix syntax error: default to "wrote N bytes"; writing a single byte is an unusual case, not the normal one. --- diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index b5e1b2ce..1097bdf8 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -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));