fix some compiler warnings in 32-bit linux

This commit is contained in:
hexcoder-
2021-10-02 22:47:22 +02:00
parent d668f9697c
commit e80131bef5
8 changed files with 19 additions and 14 deletions

View File

@ -184,7 +184,7 @@ static void read_initial_file(void) {
if (st.st_size >= TMIN_MAX_FILE) {
FATAL("Input file is too large (%u MB max)", TMIN_MAX_FILE / 1024 / 1024);
FATAL("Input file is too large (%ld MB max)", TMIN_MAX_FILE / 1024 / 1024);
}