mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 20:51:31 +00:00
Use %z modifiert to print a size_t.
This fixes a gcc warning on Win32.
This commit is contained in:
parent
aa57ec9f7b
commit
380642468b
1 changed files with 1 additions and 1 deletions
|
@ -1627,7 +1627,7 @@ CMod_LoadEntityString(lump_t *l, char *name)
|
|||
{
|
||||
if (bufLen + 1 > sizeof(map_entitystring))
|
||||
{
|
||||
Com_Printf("CMod_LoadEntityString: .ent file %s too large: %i > %lu.\n", s, bufLen, sizeof(map_entitystring));
|
||||
Com_Printf("CMod_LoadEntityString: .ent file %s too large: %i > %zu.\n", s, bufLen, sizeof(map_entitystring));
|
||||
FS_FreeFile(buffer);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue