From df58812b528c9b7857d8bde8f3eea4ad46ed034f Mon Sep 17 00:00:00 2001 From: David Brownell Date: Sat, 26 Dec 2009 10:24:39 -0800 Subject: NOR: messaging fix Fix syntax error: default to "wrote N bytes"; writing a single byte is an unusual case, not the normal one. --- src/flash/nor/tcl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/flash') 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)); -- cgit v1.2.3