mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 01:03:41 +00:00
[BOOT][DIRECTX][SHELL32] Unneeded semicolons (trivial) (#3133)
Except in 3rd-party code. CORE-13162
This commit is contained in:
parent
d54e50f3dc
commit
d7fd62d478
3 changed files with 3 additions and 3 deletions
|
@ -1589,7 +1589,7 @@ MmPaReserveSelfMapPages (
|
||||||
Request.Pages = PageCount;
|
Request.Pages = PageCount;
|
||||||
Request.Alignment = Alignment;
|
Request.Alignment = Alignment;
|
||||||
Request.Type = BL_MM_REQUEST_DEFAULT_TYPE;
|
Request.Type = BL_MM_REQUEST_DEFAULT_TYPE;
|
||||||
Request.Flags = 0;;
|
Request.Flags = 0;
|
||||||
Status = MmPaAllocatePages(&MmMdlUnmappedUnallocated,
|
Status = MmPaAllocatePages(&MmMdlUnmappedUnallocated,
|
||||||
&Descriptor,
|
&Descriptor,
|
||||||
&MmMdlUnmappedUnallocated,
|
&MmMdlUnmappedUnallocated,
|
||||||
|
|
|
@ -205,7 +205,7 @@ CTuningSpaceContainer::Add(ITuningSpace *TuningSpace, VARIANT *NewIndex)
|
||||||
TuningSpace->AddRef();
|
TuningSpace->AddRef();
|
||||||
NewIndex->vt = VT_BSTR;
|
NewIndex->vt = VT_BSTR;
|
||||||
InterlockedIncrement(&m_Ref);
|
InterlockedIncrement(&m_Ref);
|
||||||
return TuningSpace->get_FriendlyName(&NewIndex->bstrVal);;
|
return TuningSpace->get_FriendlyName(&NewIndex->bstrVal);
|
||||||
}
|
}
|
||||||
HRESULT
|
HRESULT
|
||||||
STDMETHODCALLTYPE
|
STDMETHODCALLTYPE
|
||||||
|
|
|
@ -111,7 +111,7 @@ COpenWithList::~COpenWithList()
|
||||||
BOOL COpenWithList::Load()
|
BOOL COpenWithList::Load()
|
||||||
{
|
{
|
||||||
HKEY hKey;
|
HKEY hKey;
|
||||||
WCHAR wszName[256], wszBuf[100];;
|
WCHAR wszName[256], wszBuf[100];
|
||||||
DWORD i = 0, cchName, dwSize;
|
DWORD i = 0, cchName, dwSize;
|
||||||
SApp *pApp;
|
SApp *pApp;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue