Updates to quiet some compiler warnings.

This commit is contained in:
brectanus
2007-03-01 11:49:56 +00:00
parent 79d232ccff
commit f4fb4ed4f6
6 changed files with 11 additions and 9 deletions

View File

@@ -666,11 +666,11 @@ int urldecode_nonstrict_inplace_ex(unsigned char *input, long int input_len, int
*d++ = c2;
count += 3;
i += 3;
*invalid_count++;
(*invalid_count)++; /* parens quiet compiler warning */
}
} else {
/* Not enough bytes available, copy the raw bytes. */
*invalid_count++;
(*invalid_count)++; /* parens quiet compiler warning */
*d++ = '%';
count++;