mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Remove stray semicolons, GCC gratias.
svn path=/trunk/; revision=37835
This commit is contained in:
parent
c920f222c0
commit
774b7483da
5 changed files with 5 additions and 5 deletions
|
@ -136,7 +136,7 @@ Create_DirectDraw (LPGUID pGUID, LPDIRECTDRAW* pIface,
|
|||
{
|
||||
DX_STUB_str("Got iface\n");
|
||||
|
||||
if (StartDirectDraw((LPDIRECTDRAW)This, pGUID, FALSE) == DD_OK);
|
||||
if (StartDirectDraw((LPDIRECTDRAW)This, pGUID, FALSE) == DD_OK)
|
||||
{
|
||||
/*
|
||||
RtlZeroMemory(&wnd_class, sizeof(wnd_class));
|
||||
|
|
|
@ -1537,7 +1537,7 @@ SetupDiSetSelectedDriverA(
|
|||
if (DriverInfoData != NULL)
|
||||
{
|
||||
if (DriverInfoData->cbSize != sizeof(SP_DRVINFO_DATA_V2_A) &&
|
||||
DriverInfoData->cbSize != sizeof(SP_DRVINFO_DATA_V1_A));
|
||||
DriverInfoData->cbSize != sizeof(SP_DRVINFO_DATA_V1_A))
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
|
|
|
@ -110,7 +110,7 @@ RtlFindMessage(PVOID BaseAddress,
|
|||
DPRINT("UnicodeText: %S\n", (PWSTR)MessageEntry->Text);
|
||||
}
|
||||
|
||||
if (MessageResourceEntry != NULL);
|
||||
if (MessageResourceEntry != NULL)
|
||||
{
|
||||
*MessageResourceEntry = MessageEntry;
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ IoAllocateController(IN PCONTROLLER_OBJECT ControllerObject,
|
|||
|
||||
/* Insert the Device Queue */
|
||||
if (!KeInsertDeviceQueue(&ControllerObject->DeviceWaitQueue,
|
||||
&DeviceObject->Queue.Wcb.WaitQueueEntry));
|
||||
&DeviceObject->Queue.Wcb.WaitQueueEntry))
|
||||
{
|
||||
/* Call the execution routine */
|
||||
Result = ExecutionRoutine(DeviceObject,
|
||||
|
|
|
@ -114,7 +114,7 @@ IoReleaseRemoveLockEx(IN PIO_REMOVE_LOCK RemoveLock,
|
|||
}
|
||||
|
||||
/* Decrement the lock count */
|
||||
if (!InterlockedDecrement(&Lock->Common.IoCount));
|
||||
if (!InterlockedDecrement(&Lock->Common.IoCount))
|
||||
{
|
||||
/* Signal the event */
|
||||
KeSetEvent(&Lock->Common.RemoveEvent, IO_NO_INCREMENT, FALSE);
|
||||
|
|
Loading…
Reference in a new issue