X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fcommon.c;h=46cb243e1c2ab354e8b606be94402bee9e369ef4;hb=0a837fc36bee177094cc064d8146c2a96e4a8f1d;hp=072e6912fd45079dff8ca4d76270fd9993233991;hpb=153848e6cc79241a8da51c1b601c13722b5380a6;p=openocd.git diff --git a/src/flash/common.c b/src/flash/common.c index 072e6912fd..46cb243e1c 100644 --- a/src/flash/common.c +++ b/src/flash/common.c @@ -21,17 +21,17 @@ #endif #include "common.h" -#include "log.h" +#include 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; }