1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 18:25:16 +01:00

Added missing va_end

This commit is contained in:
Simone Ferrini
2015-06-23 22:23:30 +02:00
parent e39505e23d
commit 6d05adb43f

View File

@@ -310,8 +310,8 @@ void console_printf(const char *format, ...)
{
va_list list;
va_start(list, format);
vsprintf(_consolePrintfBuffer, format, list);
va_end(list);
console_writeline(_consolePrintfBuffer);
}