Replace DPRINTF with TRACE.

diff --git a/dlls/setupapi/parser.c b/dlls/setupapi/parser.c
index 0123bd3..22397ad 100644
--- a/dlls/setupapi/parser.c
+++ b/dlls/setupapi/parser.c
@@ -1680,8 +1680,8 @@
     {
         TRACE( "%p/%p/%d/%d index %ld returning",
                context->Inf, context->CurrentInf, context->Section, context->Line, index );
-        for (i = index; i < line->nb_fields; i++) DPRINTF( " %02x", buffer[i - index] );
-        DPRINTF( "\n" );
+        for (i = index; i < line->nb_fields; i++) TRACE( " %02x", buffer[i - index] );
+        TRACE( "\n" );
     }
     return TRUE;
 }