Fix compiler error due to mismatching format in format string

This commit is contained in:
Nikias Bassen
2023-07-21 04:07:24 +07:00
parent faafec8be9
commit b9cfe0b264
+1 -1
View File
@@ -792,7 +792,7 @@ static char *buf_from_file(const char *filename, size_t *size)
}
size_t amount = fread(ibuf, 1, filesize, fp);
if (amount != filesize) {
fprintf(stderr, "ERROR: could not read %ld bytes from %s\n", filesize, filename);
fprintf(stderr, "ERROR: could not read %" PRIu64 " bytes from %s\n", (uint64_t)filesize, filename);
free(ibuf);
return NULL;
}