This commit is contained in:
Miodrag Milanovic 2025-12-30 10:12:10 +01:00
parent dfed52923a
commit a2d62ae3af
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ std::string vstringf(const char *fmt, va_list ap)
char *str = NULL;
#if defined(_WIN32) || defined(__CYGWIN__)
int sz = 64 + strlen(fmt), rc;
int sz = 64 + strlen(fmt);
while (1) {
va_list apc;
va_copy(apc, ap);