changeset 12258:25310086fc95

Less verbosity by moving some debug messages from printf --> dbgprintf.
author diego
date Fri, 23 Apr 2004 11:50:23 +0000
parents 15fedf4992b7
children 28834fb1e26c
files loader/win32.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;