mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NDK] Fix RTL_PAGED_CODE macro in user mode
NOP_FUNCTION is defined to "(void)0". Calling : RTL_PAGED_CODE(); in user mode was changed to: (void)0(); As "0" is not callable, this was leading to a compilation error.
This commit is contained in:
parent
7eac585ebf
commit
ff045b2dbe
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ RtlConvertUlongToLuid(
|
|||
//
|
||||
// This macro does nothing in user mode
|
||||
//
|
||||
#define RTL_PAGED_CODE NOP_FUNCTION
|
||||
#define RTL_PAGED_CODE()
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue