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