Skip to content

Commit 240fe81

Browse files
committed
silence warning
1 parent 9e8d465 commit 240fe81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rw.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static size_t read_int(scs_int *dest, size_t file_int_sz, size_t nitems,
6060
}
6161
void *ptr = scs_calloc(nitems, file_int_sz);
6262
size_t val = fread(ptr, file_int_sz, nitems, fin);
63-
scs_int i;
63+
size_t i;
6464
switch (file_int_sz) {
6565
case 4:
6666
for (i = 0; i < nitems; ++i) {

0 commit comments

Comments
 (0)