xbps-query: remove doubled incrementation

Otherwise clang will complain with the following message:

  search.c:67:3: error: variable 'i' is incremented both in the loop
  header and in the loop body [-Werror,-Wfor-loop-analysis]
This commit is contained in:
Enno Boland 2016-03-20 09:54:51 +01:00
parent e2693f7012
commit 3bcb2d6543

View File

@ -59,14 +59,13 @@ print_results(struct xbps_handle *xhp, struct search_data *sd)
unsigned int j, tlen = 0, len = 0;
/* Iterate over results array and find out largest pkgver string */
for (unsigned int i = 0; i < xbps_array_count(sd->results); i++) {
for (unsigned int i = 0; i < xbps_array_count(sd->results); i+=2) {
xbps_array_get_cstring_nocopy(sd->results, i, &pkgver);
len = strlen(pkgver);
if (tlen == 0 || len > tlen)
tlen = len;
i++;
}
for (unsigned int i = 0; i < xbps_array_count(sd->results); i++) {
for (unsigned int i = 0; i < xbps_array_count(sd->results); i+=2) {
xbps_array_get_cstring_nocopy(sd->results, i, &pkgver);
xbps_array_get_cstring_nocopy(sd->results, i+1, &desc);
xbps_strlcpy(tmp, pkgver, sizeof(tmp));
@ -91,7 +90,6 @@ print_results(struct xbps_handle *xhp, struct search_data *sd)
} else {
printf("%s %s %s\n", inststr, tmp, desc);
}
i++;
}
}