Bug 587321 - YARR landing broke mingw compilation r=cdleary

This commit is contained in:
Jacek Caban 2010-08-21 12:21:24 +02:00
parent 562f617316
commit d4c88eb729

View File

@ -64,7 +64,7 @@ static void printf_stderr_common(const char* format, ...)
static void printCallSite(const char* file, int line, const char* function)
{
#if WTF_PLATFORM_WIN && !WTF_PLATFORM_WINCE && defined _DEBUG
#if WTF_COMPILER_MSVC && !WTF_PLATFORM_WINCE && defined _DEBUG
_CrtDbgReport(_CRT_WARN, file, line, NULL, "%s\n", function);
#else
printf_stderr_common("(%s:%d %s)\n", file, line, function);