*** empty log message ***

svn path=/trunk/boinc/; revision=5660
This commit is contained in:
Rom Walton 2005-03-14 21:37:53 +00:00
parent 11331397d1
commit 9b5a4bb483
1 changed files with 5 additions and 4 deletions

View File

@ -402,12 +402,12 @@ void xwin_graphics_event_loop() {
app_debug_msg("...glutMainLoop() returned!! This should never happen...\n");
}
void app_debug_msg (const char* /*fmt*/, ...) {
#ifndef _DEBUG
void app_debug_msg (const char* /*fmt*/, ...) {
return;
}
#else
void app_debug_msg (const char* fmt, ...) {
va_list args;
char buffer[5000+1];
static char *boinc_slotdir = NULL;
@ -437,8 +437,9 @@ void app_debug_msg (const char* /*fmt*/, ...) {
fflush (stdout);
va_end (args);
#endif
}
#endif