1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Fix more warnings, disable others

This commit is contained in:
Ted John
2017-01-12 13:00:04 +00:00
parent bd732b99c7
commit ca9c3cc5ee
7 changed files with 14 additions and 25 deletions

View File

@@ -222,7 +222,7 @@ namespace String
{
// Try again with bigger buffer
buffer = Memory::Reallocate<utf8>(buffer, bufferSize);
int len = vsnprintf(buffer, bufferSize, format, args);
len = vsnprintf(buffer, bufferSize, format, args);
if (len < 0)
{
Memory::Free(buffer);