summaryrefslogtreecommitdiffstats
path: root/src/providers/ipa
diff options
context:
space:
mode:
Diffstat (limited to 'src/providers/ipa')
-rw-r--r--src/providers/ipa/ipa_timerules.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/providers/ipa/ipa_timerules.c b/src/providers/ipa/ipa_timerules.c
index 8ac074add..857107dfa 100644
--- a/src/providers/ipa/ipa_timerules.c
+++ b/src/providers/ipa/ipa_timerules.c
@@ -263,18 +263,18 @@ static int test_bit(unsigned char *bitmap, unsigned int bit)
*/
static int name_index(const char **name_array, const char *key, int min)
{
- int index = 0;
+ int idx = 0;
const char *one;
if (name_array == NULL) {
return -1;
}
- while ((one = name_array[index]) != NULL) {
+ while ((one = name_array[idx]) != NULL) {
if (strcmp(key,one) == 0) {
- return index+min;
+ return idx+min;
}
- index++;
+ idx++;
}
return -1;