Close file at the end.

This commit is contained in:
2026-02-11 23:38:43 -08:00
parent ed40477833
commit aa1b1cae0f

4
main.c
View File

@@ -276,8 +276,6 @@ int main(int argc, char *argv[])
fprintf(stderr, "read error: %s\n", strerror(errno)); fprintf(stderr, "read error: %s\n", strerror(errno));
} }
fclose(f);
/* return 0; */ /* return 0; */
U64 lower_bound_s = (U64)ts; U64 lower_bound_s = (U64)ts;
@@ -431,5 +429,7 @@ int main(int argc, char *argv[])
CloseWindow(); CloseWindow();
fclose(f);
return 0; return 0;
} }