Skip to content

Commit

Permalink
silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bodono committed Apr 5, 2023
1 parent 9e8d465 commit 240fe81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rw.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static size_t read_int(scs_int *dest, size_t file_int_sz, size_t nitems,
}
void *ptr = scs_calloc(nitems, file_int_sz);
size_t val = fread(ptr, file_int_sz, nitems, fin);
scs_int i;
size_t i;
switch (file_int_sz) {
case 4:
for (i = 0; i < nitems; ++i) {
Expand Down

0 comments on commit 240fe81

Please sign in to comment.