summaryrefslogtreecommitdiff
path: root/Source/Core/Common/ExtendedTrace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/ExtendedTrace.cpp')
-rw-r--r--Source/Core/Common/ExtendedTrace.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/ExtendedTrace.cpp b/Source/Core/Common/ExtendedTrace.cpp
index 2262b6afba..54594eb4a9 100644
--- a/Source/Core/Common/ExtendedTrace.cpp
+++ b/Source/Core/Common/ExtendedTrace.cpp
@@ -411,8 +411,8 @@ void StackTrace(HANDLE hThread, const char* lpszMessage, FILE *file, DWORD eip,
if (hThread != GetCurrentThread())
ResumeThread(hThread);
}
-
-char g_uefbuf[2048];
+#define UEFBUFSIZE 2048
+static char g_uefbuf[UEFBUFSIZE];
void etfprintf(FILE *file, const char *format, ...)
{