mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 21:13:30 +08:00
Remove extra ending semicolons in our C code base.
svn path=/trunk/; revision=72199
This commit is contained in:
parent
24572de19c
commit
9a84ae8ab1
@ -607,7 +607,7 @@ FdoPower(IN PDEVICE_OBJECT DeviceObject,
|
||||
LowerDevice = ((PFDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension)->LowerDevice;
|
||||
PoStartNextPowerIrp(Irp);
|
||||
IoSkipCurrentIrpStackLocation(Irp);
|
||||
return PoCallDriver(LowerDevice, Irp);;
|
||||
return PoCallDriver(LowerDevice, Irp);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
@ -1209,7 +1209,7 @@ SpiGetSet(UINT uiAction, UINT uiParam, PVOID pvParam, FLONG fl)
|
||||
}
|
||||
|
||||
case SPI_SETLANGTOGGLE:
|
||||
gdwLanguageToggleKey = UserGetLanguageToggle();;
|
||||
gdwLanguageToggleKey = UserGetLanguageToggle();
|
||||
return gdwLanguageToggleKey;
|
||||
break;
|
||||
|
||||
|
@ -36,7 +36,7 @@ GradientProc(void *Context, PPERF_INFO PerfInfo, unsigned Reps)
|
||||
vert[0].Green = 0;
|
||||
vert[0].Blue = 0;
|
||||
vert[0].Alpha = 0;
|
||||
vert[1].x = PerfInfo->WndWidth;;
|
||||
vert[1].x = PerfInfo->WndWidth;
|
||||
vert[1].y = 0;
|
||||
vert[1].Red = 0;
|
||||
vert[1].Green = 0xff00;
|
||||
|
@ -50,7 +50,7 @@ static void Test_Dim()
|
||||
ok(wnd != ((HWND)0xdeadbeef), "Expected a valid window ptr\n");
|
||||
ok(IsWindow(wnd), "Expected a valid window\n");
|
||||
ok(IsWindowVisible(wnd), "Expected the window to be visible\n");
|
||||
char classname[100] = {0};;
|
||||
char classname[100] = {0};
|
||||
int nRet = GetClassNameA(wnd, classname, 100);
|
||||
ok(nRet == 17, "Expected GetClassName to return 3 was %i\n", nRet);
|
||||
ok(!strcmp(classname, "DimmedWindowClass"), "Expected classname to be DimmedWindowClass, was %s\n", classname);
|
||||
|
@ -259,7 +259,7 @@ Test_TimeAdjustment(void)
|
||||
|
||||
/* Restore original values */
|
||||
SetTimeInfo.TimeAdjustment = TimeInfoOrg.TimeAdjustment;
|
||||
SetTimeInfo.Enable = TimeInfoOrg.Enable;;
|
||||
SetTimeInfo.Enable = TimeInfoOrg.Enable;
|
||||
Status = NtSetSystemInformation(SystemTimeAdjustmentInformation,
|
||||
&SetTimeInfo,
|
||||
sizeof(SetTimeInfo));
|
||||
|
@ -474,7 +474,7 @@ int _tmain(int argc, _TCHAR* argv[])
|
||||
ROSEaBuffer->EaValueLength = (UCHAR)strlen(ROSEaBuffer->EaName);
|
||||
ulROSError = RANDOM_INIT_ERROR;
|
||||
ROSEaBuffer->Flags = TestEaBufferFlags;
|
||||
ROSEaBuffer->NextEntryOffset = ((ROSEaBuffer->EaNameLength+ROSEaBuffer->EaNameLength+9)+3)&0xFFFFFFFC;;
|
||||
ROSEaBuffer->NextEntryOffset = ((ROSEaBuffer->EaNameLength+ROSEaBuffer->EaNameLength+9)+3)&0xFFFFFFFC;
|
||||
ROSStatus = IoCheckEaBufferValidityROS(ROSEaBuffer,TestEaLength,&ulROSError);
|
||||
|
||||
printf("%i-",ROSEaBuffer->NextEntryOffset);
|
||||
|
Loading…
Reference in New Issue
Block a user