1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix missing argument for vsnprintf_s

This commit is contained in:
Ignacio Etcheverry
2019-04-30 23:15:25 +02:00
parent 7018de8425
commit 4eedb97802

View File

@@ -33,6 +33,7 @@
#include "core/os/file_access.h"
#include <stdio.h>
#include <stdlib.h>
namespace {
@@ -210,7 +211,7 @@ String str_format(const char *p_format, ...) {
#endif
#if defined(MINGW_ENABLED) || defined(_MSC_VER)
#define vsnprintf vsnprintf_s
#define vsnprintf(m_buffer, m_count, m_format, m_argptr) vsnprintf_s(m_buffer, m_count, _TRUNCATE, m_format, m_argptr)
#endif
String str_format(const char *p_format, va_list p_list) {