Fix if's that are followed by semicolons.

This commit is contained in:
Mike McCormack 2005-09-20 11:37:58 +00:00 committed by Alexandre Julliard
parent eebf13a1d8
commit c621a5801f
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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)