Compiler satisfaction

This commit is contained in:
Thomas Sterren 2018-02-20 14:54:02 +01:00
parent 9e51a3e586
commit 992850bcb1

View File

@ -89,6 +89,7 @@ void* gfxAlloc(size_t sz)
void* gfxRealloc(void* ptr, size_t oldsz, size_t newsz) void* gfxRealloc(void* ptr, size_t oldsz, size_t newsz)
{ {
Q_UNUSED(oldsz)
return realloc(ptr, newsz); return realloc(ptr, newsz);
} }