Commit 91d46cb3 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

hidclass.sys: Break the report descriptor into multiple lines.

parent c465209c
...@@ -1028,7 +1028,11 @@ WINE_HIDP_PREPARSED_DATA* ParseDescriptor(BYTE *descriptor, unsigned int length) ...@@ -1028,7 +1028,11 @@ WINE_HIDP_PREPARSED_DATA* ParseDescriptor(BYTE *descriptor, unsigned int length)
{ {
TRACE("Descriptor[%i]: ", length); TRACE("Descriptor[%i]: ", length);
for (cidx = 0; cidx < length; cidx++) for (cidx = 0; cidx < length; cidx++)
{
TRACE("%x ",descriptor[cidx]); TRACE("%x ",descriptor[cidx]);
if (cidx % 80 == 0)
TRACE("\n");
}
TRACE("\n"); TRACE("\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment