Fix missing argument for vsnprintf_s
This commit is contained in:
parent
7018de8425
commit
4eedb97802
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue