DPRINTF->TRACE dlls/winaspi

Tony Lambregts tony_lambregts at telusplanet.net
Fri Mar 14 12:12:38 CST 2003


I wonder if I should be changing this or leaving it alone. These are dumps.

Change Log: Replace DPRINTF with TRACE

Files changed: dlls/winaspi/winaspi16.c
                dlls/winaspi/winaspi32.c

-- 

Tony Lambregts




-------------- next part --------------
Index: winaspi16.c
===================================================================
RCS file: /home/wine/wine/dlls/winaspi/winaspi16.c,v
retrieving revision 1.32
diff -u -r1.32 winaspi16.c
--- winaspi16.c	27 Feb 2003 21:09:45 -0000	1.32
+++ winaspi16.c	14 Mar 2003 18:18:10 -0000
@@ -184,12 +184,12 @@
   cmd = prb->CDBByte[0];
   if (TRACE_ON(aspi))
   {
-      DPRINTF("CDB buffer[");
+      TRACE("CDB buffer[");
       for (i = 0; i < prb->SRB_CDBLen; i++) {
-          if (i != 0) DPRINTF(",");
-          DPRINTF("%02x", *cdb++);
+          if (i != 0) TRACE(",");
+          TRACE("%02x", *cdb++);
       }
-      DPRINTF("]\n");
+      TRACE("]\n");
   }
 }
 
@@ -202,12 +202,12 @@
   if (TRACE_ON(aspi))
   {
       cdb = &prb->CDBByte[0];
-      DPRINTF("SenseArea[");
+      TRACE("SenseArea[");
       for (i = 0; i < prb->SRB_SenseLen; i++) {
-          if (i) DPRINTF(",");
-          DPRINTF("%02x", *cdb++);
+          if (i) TRACE(",");
+          TRACE("%02x", *cdb++);
       }
-      DPRINTF("]\n");
+      TRACE("]\n");
   }
 }
 


More information about the wine-patches mailing list