Trying to fix...
authorDmitry Gorbachev <gorbachev@reactos.org>
Wed, 3 Dec 2008 18:04:26 +0000 (18:04 +0000)
committerDmitry Gorbachev <gorbachev@reactos.org>
Wed, 3 Dec 2008 18:04:26 +0000 (18:04 +0000)
svn path=/trunk/; revision=37839

reactos/ntoskrnl/include/internal/mm.h

index 9f754e5..53263f5 100644 (file)
@@ -166,10 +166,10 @@ typedef ULONG PFN_TYPE, *PPFN_TYPE;
 
 
 #define InterlockedCompareExchangePte(PointerPte, Exchange, Comperand) \
-    (ULONG)InterlockedCompareExchange((PLONG)(PointerPte), Exchange, Comperand)
+    InterlockedCompareExchange((PLONG)(PointerPte), Exchange, Comperand)
 
 #define InterlockedExchangePte(PointerPte, Value) \
-    (ULONG)InterlockedExchange((PLONG)(PointerPte), Value)
+    InterlockedExchange((PLONG)(PointerPte), Value)
 
 typedef struct
 {