1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Coding style cleanups

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-04-02 13:51:25 -05:00
parent 38e5a4a54f
commit 6a8b1c4f84

View File

@ -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)
@ -765,9 +766,9 @@ static int multiselect_parse(char *array, int count, char *response)
if(len > 1) {
/* check for range */
char *p;
if((p = strchr(starts+1, '-'))) {
if((p = strchr(starts + 1, '-'))) {
*p = 0;
ends = p+1;
ends = p + 1;
}
}
@ -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;
}
}