summaryrefslogtreecommitdiff
path: root/src/flash/common.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-06-14 11:51:25 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-06-14 22:12:04 +0200
commit3e51d893ed3d1273b5487e05196f00fe3d14773d (patch)
treef542745888ce0d12132e88a319ccdac275ac42ea /src/flash/common.c
parent9132f7083d01510eb1c2471a7c3f3247e35cdf3b (diff)
downloadopenocd+libswd-3e51d893ed3d1273b5487e05196f00fe3d14773d.tar.gz
openocd+libswd-3e51d893ed3d1273b5487e05196f00fe3d14773d.tar.bz2
openocd+libswd-3e51d893ed3d1273b5487e05196f00fe3d14773d.tar.xz
openocd+libswd-3e51d893ed3d1273b5487e05196f00fe3d14773d.zip
-Wshadow fixes
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/flash/common.c')
-rw-r--r--src/flash/common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/flash/common.c b/src/flash/common.c
index 17bc81c2..46cb243e 100644
--- a/src/flash/common.c
+++ b/src/flash/common.c
@@ -25,13 +25,13 @@
unsigned get_flash_name_index(const char *name)
{
- const char *index = strrchr(name, '.');
- if (NULL == index)
+ const char *name_index = strrchr(name, '.');
+ if (NULL == name_index)
return 0;
- if (index[1] < '0' || index[1] > '9')
+ if (name_index[1] < '0' || name_index[1] > '9')
return ~0U;
unsigned requested;
- int retval = parse_uint(index + 1, &requested);
+ int retval = parse_uint(name_index + 1, &requested);
// detect parsing error by forcing past end of bank list
return (ERROR_OK == retval) ? requested : ~0U;
}