From 263240debcc7573c7a4415fae7265e5800889c82 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Sun, 27 Oct 2013 15:36:05 -0500 Subject: [PATCH] Apparently MinGW needs this too. --- src/RageUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RageUtil.cpp b/src/RageUtil.cpp index d3bdf32c9a..049b07c8a3 100644 --- a/src/RageUtil.cpp +++ b/src/RageUtil.cpp @@ -389,7 +389,7 @@ RString vssprintf( const char *szFormat, va_list argList ) { RString sStr; -#if defined(WIN32) && !defined(__MINGW32__) +#if defined(WIN32) char *pBuf = NULL; int iChars = 1; int iUsed = 0;