*** empty log message ***

svn path=/trunk/boinc/; revision=2945
This commit is contained in:
Rom Walton 2004-02-03 18:28:40 +00:00
parent 2729ebd4f5
commit 0235407ac1
1 changed files with 2 additions and 9 deletions

View File

@ -98,22 +98,15 @@ int __cdecl BoincReportingFunction( int reportType, char *szMsg, int *retVal ){
(*retVal) = 0;
if ( _CRT_ASSERT == reportType ){
fprintf( stderr, "ASSERT: %s\n", szMsg );
fflush( stderr );
(*retVal) = 1;
return(TRUE);
} else if ( _CRT_WARN == reportType ) {
} else {
fprintf( stderr, "TRACE: %s", szMsg );
fflush( stderr );
return(TRUE);
}
return(FALSE);
return(TRUE);
}