From e23b1fdf5e2a02d22b97fc6f7ae7fd100e4b9d29 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Mon, 1 May 2006 23:21:19 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=10074 --- lib/diagnostics.C | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/diagnostics.C b/lib/diagnostics.C index a4421a78d8..7afe7d6254 100644 --- a/lib/diagnostics.C +++ b/lib/diagnostics.C @@ -384,8 +384,6 @@ int __cdecl boinc_message_reporting(int reportType, char *szMsg, int *retVal){ case _CRT_WARN: case _CRT_ERROR: - OutputDebugString(szMsg); // Reports string to the debugger output window - if (flags & BOINC_DIAG_TRACETOSTDERR) { fprintf(stderr, szMsg); fflush(stderr); @@ -399,10 +397,6 @@ int __cdecl boinc_message_reporting(int reportType, char *szMsg, int *retVal){ break; case _CRT_ASSERT: - OutputDebugString("ASSERT: "); // Reports string to the debugger output window - OutputDebugString(szMsg); // Reports string to the debugger output window - OutputDebugString("\n"); // Reports string to the debugger output window - fprintf(stderr, "ASSERT: %s\n", szMsg); fflush(stderr);