Commit c621a580 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Fix if's that are followed by semicolons.

parent eebf13a1
......@@ -366,7 +366,7 @@ REBAR_DumpBandInfo( LPREBARBANDINFOA pB)
{
if( !TRACE_ON(rebar) ) return;
TRACE("band info: ");
if (pB->fMask & RBBIM_ID);
if (pB->fMask & RBBIM_ID)
TRACE("ID=%u, ", pB->wID);
TRACE("size=%u, child=%p", pB->cbSize, pB->hwndChild);
if (pB->fMask & RBBIM_COLORS)
......@@ -415,7 +415,7 @@ REBAR_DumpBand (REBAR_INFO *iP)
for (i = 0; i < iP->uNumBands; i++) {
pB = &iP->bands[i];
TRACE("band # %u:", i);
if (pB->fMask & RBBIM_ID);
if (pB->fMask & RBBIM_ID)
TRACE(" ID=%u", pB->wID);
if (pB->fMask & RBBIM_CHILD)
TRACE(" child=%p", pB->hwndChild);
......
......@@ -368,7 +368,7 @@ static UINT process_handle(MSIPACKAGE* package, UINT type,
}
CloseHandle(ThreadHandle);
if (ProcessHandle);
if (ProcessHandle)
CloseHandle(ProcessHandle);
if (finished)
*finished = TRUE;
......@@ -390,7 +390,7 @@ static UINT process_handle(MSIPACKAGE* package, UINT type,
else
{
CloseHandle(ThreadHandle);
if (ProcessHandle);
if (ProcessHandle)
CloseHandle(ProcessHandle);
}
if (finished)
......
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