[core] fix stbi scan-build warning

This commit is contained in:
Michael Jerris 2020-06-05 22:05:34 +00:00 committed by Andrey Volk
parent 97276035dc
commit 53059f298a
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
#ifdef _MSC_VER
#define STBI_NOTUSED(v) (void)(v)
#else
#define STBI_NOTUSED(v) (void)sizeof(v)
#define STBI_NOTUSED(v) (void)(v)
#endif
#ifdef _MSC_VER