Coding style cleanups
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
38e5a4a54f
commit
6a8b1c4f84
1 changed files with 8 additions and 5 deletions
|
@ -746,8 +746,9 @@ static int multiselect_parse(char *array, int count, char *response)
|
|||
char *ends = NULL;
|
||||
char *starts = strtok_r(str, " ", &saveptr);
|
||||
|
||||
if (starts == NULL)
|
||||
if (starts == NULL) {
|
||||
break;
|
||||
}
|
||||
strtrim(starts);
|
||||
int len = strlen(starts);
|
||||
if(len == 0)
|
||||
|
@ -777,9 +778,11 @@ static int multiselect_parse(char *array, int count, char *response)
|
|||
if(!ends) {
|
||||
array[start-1] = include;
|
||||
} else {
|
||||
if(parseindex(ends, &end, start, count) != 0)
|
||||
int d;
|
||||
if(parseindex(ends, &end, start, count) != 0) {
|
||||
return(-1);
|
||||
for(int d = start; d <= end; d++) {
|
||||
}
|
||||
for(d = start; d <= end; d++) {
|
||||
array[d-1] = include;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue