Skip to content

Commit c1f4948

Browse files
committed
test: fix shadowed variable
1 parent 35afaa2 commit c1f4948

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

t/01-utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ int main(void) {
313313

314314
int iters = 100; /* increase number when really doing benchmarks */
315315
long start = ns_now();
316-
for (int i = 0; i < iters; i++) {
316+
for (i = 0; i < iters; i++) {
317317
make_uniq(uniq, "%s-%s;%d", "xxx-xxxxx-xxxxxx.xxxxxxxxxx.xxxxxx.xx", "xxxx_xxxx_xxxxx_xxx_xx", i);
318318
}
319319
long end = ns_now();

0 commit comments

Comments
 (0)