From: Øyvind Harboe Date: Tue, 15 Jun 2010 21:29:08 +0000 (+0200) Subject: flash: -Wshadow warning fix X-Git-Tag: v0.5.0-rc1~611 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=90454525b6119b95226e02754d3a5c6e125c5922;p=openocd flash: -Wshadow warning fix Signed-off-by: Øyvind Harboe --- diff --git a/src/flash/nor/tcl.c b/src/flash/nor/tcl.c index 28a504e7..3dc6cff3 100644 --- a/src/flash/nor/tcl.c +++ b/src/flash/nor/tcl.c @@ -467,7 +467,7 @@ COMMAND_HANDLER(handle_flash_fill_command) uint32_t cur_size = 0; uint32_t chunk_count; struct target *target = get_current_target(CMD_CTX); - uint32_t i; + unsigned i; uint32_t wordsize; int retval = ERROR_OK; @@ -563,7 +563,6 @@ COMMAND_HANDLER(handle_flash_fill_command) goto done; } - unsigned i; for (i = 0; i < cur_size; i++) { if (readback[i]!=chunk[i])