From f52414693c381fa43ad4635dc82cd0aebffef6d5 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 30 May 2009 22:54:38 +0000 Subject: [PATCH] - Fix line breaks - Patch by Olaf Siejka svn path=/trunk/; revision=41212 --- reactos/dll/win32/setupapi/parser.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/setupapi/parser.c b/reactos/dll/win32/setupapi/parser.c index c9ebc618c45..43a43fba36f 100644 --- a/reactos/dll/win32/setupapi/parser.c +++ b/reactos/dll/win32/setupapi/parser.c @@ -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; }