# HG changeset patch # User diego # Date 1082721023 0 # Node ID 25310086fc956f1957e5f044d1c0b094b3a326f3 # Parent 15fedf4992b7af1534ef7db86d5da578321b553d Less verbosity by moving some debug messages from printf --> dbgprintf. diff -r 15fedf4992b7 -r 25310086fc95 loader/win32.c --- a/loader/win32.c Fri Apr 23 11:00:05 2004 +0000 +++ b/loader/win32.c Fri Apr 23 11:50:23 2004 +0000 @@ -403,7 +403,7 @@ if (header->deadbeef != (long) 0xdeadbeef) { - printf("FATAL releasing corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt); + dbgprintf("FATAL releasing corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt); return 0; } @@ -1663,7 +1663,7 @@ { if (header->deadbeef != 0xdeadbeef) { - printf("FATAL found corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt); + dbgprintf("FATAL found corrupted memory! %p 0x%lx (%d)\n", header, header->deadbeef, alccnt); break; } @@ -5332,7 +5332,7 @@ if (--max_fatal < 0) break; } - printf("Total Unfree %d bytes cnt %d [%p,%d]\n",unfree, unfreecnt, last_alloc, alccnt); + dbgprintf("Total Unfree %d bytes cnt %d [%p,%d]\n",unfree, unfreecnt, last_alloc, alccnt); #endif g_tls = NULL; list = NULL;