Skip to content

Commit

Permalink
Fix printf format for MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Jul 17, 2024
1 parent 1af77c2 commit 72a1c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/gl_model.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ static void Mod_LoadLighting (lump_t *l)
return;
}
Hunk_FreeToLowMark(mark);
Con_Printf("Outdated .lit file (%s should be %u bytes, not %lli)\n", litfilename, 8+l->filelen*3, com_filesize);
Con_Printf("Outdated .lit file (%s should be %u bytes, not %" SDL_PRIs64 "\n", litfilename, 8+l->filelen*3, com_filesize);
}
else
{
Expand Down

0 comments on commit 72a1c02

Please sign in to comment.