mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 20:31:29 +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");
|
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));
|
RtlZeroMemory(&wnd_class, sizeof(wnd_class));
|
||||||
|
|
|
@ -1537,7 +1537,7 @@ SetupDiSetSelectedDriverA(
|
||||||
if (DriverInfoData != NULL)
|
if (DriverInfoData != NULL)
|
||||||
{
|
{
|
||||||
if (DriverInfoData->cbSize != sizeof(SP_DRVINFO_DATA_V2_A) &&
|
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);
|
SetLastError(ERROR_INVALID_PARAMETER);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
|
@ -110,7 +110,7 @@ RtlFindMessage(PVOID BaseAddress,
|
||||||
DPRINT("UnicodeText: %S\n", (PWSTR)MessageEntry->Text);
|
DPRINT("UnicodeText: %S\n", (PWSTR)MessageEntry->Text);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (MessageResourceEntry != NULL);
|
if (MessageResourceEntry != NULL)
|
||||||
{
|
{
|
||||||
*MessageResourceEntry = MessageEntry;
|
*MessageResourceEntry = MessageEntry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ IoAllocateController(IN PCONTROLLER_OBJECT ControllerObject,
|
||||||
|
|
||||||
/* Insert the Device Queue */
|
/* Insert the Device Queue */
|
||||||
if (!KeInsertDeviceQueue(&ControllerObject->DeviceWaitQueue,
|
if (!KeInsertDeviceQueue(&ControllerObject->DeviceWaitQueue,
|
||||||
&DeviceObject->Queue.Wcb.WaitQueueEntry));
|
&DeviceObject->Queue.Wcb.WaitQueueEntry))
|
||||||
{
|
{
|
||||||
/* Call the execution routine */
|
/* Call the execution routine */
|
||||||
Result = ExecutionRoutine(DeviceObject,
|
Result = ExecutionRoutine(DeviceObject,
|
||||||
|
|
|
@ -114,7 +114,7 @@ IoReleaseRemoveLockEx(IN PIO_REMOVE_LOCK RemoveLock,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Decrement the lock count */
|
/* Decrement the lock count */
|
||||||
if (!InterlockedDecrement(&Lock->Common.IoCount));
|
if (!InterlockedDecrement(&Lock->Common.IoCount))
|
||||||
{
|
{
|
||||||
/* Signal the event */
|
/* Signal the event */
|
||||||
KeSetEvent(&Lock->Common.RemoveEvent, IO_NO_INCREMENT, FALSE);
|
KeSetEvent(&Lock->Common.RemoveEvent, IO_NO_INCREMENT, FALSE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue