struct mtree_option *iter;
const char *next, *eq, *name, *end;
size_t name_len, len;
- int r;
+ int r, i;
if ((entry = malloc(sizeof(*entry))) == NULL) {
archive_set_error(&a->archive, errno, "Can't allocate memory");
}
/* Name starts after the last whitespace separator */
name = line;
- for (int i = 0; i < line_len; i++) {
+ for (i = 0; i < line_len; i++) {
if (line[i] == '\r'
|| line[i] == '\n'
|| line[i] == '\t'
const char *v1 = (const char *)_v1;
size_t c = 0;
(void)ld; /* UNUSED */
+ size_t i;
assertion_count(file, line);
- for (size_t i = 0; i < l; ++i) {
+ for (i = 0; i < l; ++i) {
if (v1[i] == b) {
++c;
}