Silenced lots of warnings pointed out by XCode.

This commit is contained in:
Christoph Oelckers 2020-07-23 16:35:54 +02:00
parent d16d8f0d0e
commit be9094cb97
26 changed files with 89 additions and 180 deletions

View file

@ -382,7 +382,7 @@ int32_t scriptfile_getsymbolvalue(char const *name, int32_t *val)
sscanf(name + 2, "%" PRIx64 "", &x);
if (EDUKE32_PREDICT_FALSE(x > UINT32_MAX))
Printf("warning: number 0x%x" PRIx64 " truncated to 32 bits.\n", x);
Printf("warning: number 0x%" PRIx64 " truncated to 32 bits.\n", x);
*val = x;
return 1;