mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 15:21:44 +00:00
Not all libc support the %z format modifier added in C99...
This commit is contained in:
parent
f7706b2c06
commit
86d438708e
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 > %zu.\n", s, bufLen, sizeof(map_entitystring));
|
||||
Com_Printf("CMod_LoadEntityString: .ent file %s too large: %i > %lu.\n", s, bufLen, (unsigned long)sizeof(map_entitystring));
|
||||
FS_FreeFile(buffer);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue