Skip to content

Commit befd488

Browse files
committed
fix type of iterator; PR microsoft#1182 by @AZero13
1 parent 3881f11 commit befd488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prim/osx/alloc-override-zone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static void zone_destroy(malloc_zone_t* zone) {
8383
}
8484

8585
static unsigned zone_batch_malloc(malloc_zone_t* zone, size_t size, void** ps, unsigned count) {
86-
size_t i;
86+
unsigned i;
8787
for (i = 0; i < count; i++) {
8888
ps[i] = zone_malloc(zone, size);
8989
if (ps[i] == NULL) break;

0 commit comments

Comments
 (0)