mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[RTL/x64] Fix a GCC compiler warning
This commit is contained in:
@@ -132,10 +132,10 @@ RtlInterlockedPushListSList(
|
||||
NewSListHead.Header16.Init = 1;
|
||||
|
||||
/* Atomically exchange the SlistHead with the new one */
|
||||
exchanged = _InterlockedCompareExchange128((PULONG64)SListHead,
|
||||
exchanged = _InterlockedCompareExchange128((PLONG64)SListHead,
|
||||
NewSListHead.Region,
|
||||
NewSListHead.Alignment,
|
||||
(PULONG64)&OldSListHead);
|
||||
(PLONG64)&OldSListHead);
|
||||
} while (!exchanged);
|
||||
|
||||
return FirstEntry;
|
||||
|
||||
Reference in New Issue
Block a user