- Fix line breaks
authorCameron Gutman <aicommander@gmail.com>
Sat, 30 May 2009 22:54:38 +0000 (22:54 +0000)
committerCameron Gutman <aicommander@gmail.com>
Sat, 30 May 2009 22:54:38 +0000 (22:54 +0000)
 - Patch by Olaf Siejka

svn path=/trunk/; revision=41212

reactos/dll/win32/setupapi/parser.c

index c9ebc61..43a43fb 100644 (file)
@@ -1964,10 +1964,9 @@ BOOL WINAPI SetupGetBinaryField( PINFCONTEXT context, DWORD index, BYTE *buffer,
     }
     if (TRACE_ON(setupapi))
     {
-        TRACE( "%p/%p/%d/%d index %d returning",
+        TRACE( "%p/%p/%d/%d index %d returning:\n",
                context->Inf, context->CurrentInf, context->Section, context->Line, index );
-        for (i = index; i < line->nb_fields; i++) TRACE( " %02x", buffer[i - index] );
-        TRACE( "\n" );
+        for (i = index; i < line->nb_fields; i++) TRACE( " %02x\n", buffer[i - index] );
     }
     return TRUE;
 }