Commit 180da392 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

progman: Avoid using the comma operator.

parent a4ff7ea2
......@@ -667,8 +667,8 @@ static BOOL GRPFILE_DoWriteGroupFile(HFILE file, PROGGROUP *group)
PUT_SHORT(buffer, 0, 0x8000);
PUT_SHORT(buffer, 2, 0xffff);
PUT_SHORT(buffer, 4, 0x000a);
buffer[6] = 'P', buffer[7] = 'M';
buffer[8] = 'C', buffer[9] = 'C';
buffer[6] = 'P'; buffer[7] = 'M';
buffer[8] = 'C'; buffer[9] = 'C';
if ((UINT)HFILE_ERROR == GRPFILE_WriteWithChecksum(file, buffer, 10))
return FALSE;
......
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