Skip to content

Commit b1d4cd0

Browse files
restore uint64_t
1 parent 53908cb commit b1d4cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ double wallclock(void)
409409
* multiple threads at the same time, or hold on to the value returned for
410410
* extended periods of time.
411411
*/
412-
static const char* filesize_to_str(char output[static 100], const size_t fsize)
412+
static const char* filesize_to_str(char output[static 100], const uint64_t fsize)
413413
{
414414
static const char suffixes[] = {'T', 'G', 'M', 'K'};
415415
for (int i = 0; i <= sizeof(suffixes); i++) {

0 commit comments

Comments
 (0)