diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2010-05-10 17:07:28 +0800 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-05-16 13:39:47 +0200 |
commit | 24ebfffff54f5201f1503256df56717900e65e2d (patch) | |
tree | c14c5a9f846f65a025a17223addb177efe1901a2 /src/flash/nor | |
parent | feb95fbb7b1af02bf62a7b06ce2fcfb972d41040 (diff) | |
download | openocd_libswd-24ebfffff54f5201f1503256df56717900e65e2d.tar.gz openocd_libswd-24ebfffff54f5201f1503256df56717900e65e2d.tar.bz2 openocd_libswd-24ebfffff54f5201f1503256df56717900e65e2d.tar.xz openocd_libswd-24ebfffff54f5201f1503256df56717900e65e2d.zip |
NOR/TCL: fix typo in error message
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Diffstat (limited to 'src/flash/nor')
-rw-r--r-- | src/flash/nor/tcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index a6e942e0..ad218123 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -571,7 +571,7 @@ COMMAND_HANDLER(handle_flash_fill_command) { if (readback[i]!=chunk[i]) { - LOG_ERROR("Verfication error address 0x%08" PRIx32 ", read back 0x%02x, expected 0x%02x", + LOG_ERROR("Verification error address 0x%08" PRIx32 ", read back 0x%02x, expected 0x%02x", address + wrote + i, readback[i], chunk[i]); retval = ERROR_FAIL; goto done; |