From 9791da2e852b7934a72f0452148c6b34f33f0192 Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Wed, 3 Dec 2008 18:04:26 +0000 Subject: [PATCH] Trying to fix... svn path=/trunk/; revision=37839 --- reactos/ntoskrnl/include/internal/mm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/include/internal/mm.h b/reactos/ntoskrnl/include/internal/mm.h index 9f754e5df6b..53263f522eb 100644 --- a/reactos/ntoskrnl/include/internal/mm.h +++ b/reactos/ntoskrnl/include/internal/mm.h @@ -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 {