mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 06:32:14 +00:00
[DRIVERS] Fix 64 bit issues
This commit is contained in:
parent
f8bf0e9c3a
commit
9e066abe2a
27 changed files with 61 additions and 60 deletions
|
@ -72,7 +72,7 @@
|
|||
#define CP CHECKPOINT
|
||||
|
||||
#define ASSERT_KM_POINTER(_x) \
|
||||
ASSERT(((PVOID)_x) != (PVOID)0xcccccccc); \
|
||||
ASSERT(((PVOID)_x) >= (PVOID)0x80000000);
|
||||
ASSERT(((ULONG_PTR)(_x)) != (ULONG_PTR)0xccccccccccccccccULL); \
|
||||
ASSERT(((PVOID)(_x)) >= MmSystemRangeStart);
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue