mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- Try to fix build
svn path=/trunk/; revision=54677
This commit is contained in:
parent
ceb51c901c
commit
d8322663ed
1 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@ RtlAssert(
|
|||
|
||||
#ifndef assert
|
||||
#ifndef NASSERT
|
||||
#define assert(x) if (!(x)) {RtlAssert("#x",__FILE__,__LINE__, ""); }
|
||||
#define assert(x) if (!(x)) {RtlAssert((PVOID)#x,(PVOID)__FILE__,__LINE__, ""); }
|
||||
#else
|
||||
#define assert(x)
|
||||
#endif
|
||||
|
@ -63,7 +63,7 @@ RtlAssert(
|
|||
|
||||
#ifndef ASSERT
|
||||
#ifndef NASSERT
|
||||
#define ASSERT(x) if (!(x)) {RtlAssert("#x",__FILE__,__LINE__, ""); }
|
||||
#define ASSERT(x) if (!(x)) {RtlAssert((PVOID)#x,(PVOID)__FILE__,__LINE__, ""); }
|
||||
#else
|
||||
#define ASSERT(x)
|
||||
#endif
|
||||
|
@ -71,7 +71,7 @@ RtlAssert(
|
|||
|
||||
#ifndef ASSERTMSG
|
||||
#ifndef NASSERT
|
||||
#define ASSERTMSG(x,m) if (!(x)) {RtlAssert("#x",__FILE__,__LINE__, m); }
|
||||
#define ASSERTMSG(x,m) if (!(x)) {RtlAssert((PVOID)#x,__FILE__,__LINE__, m); }
|
||||
#else
|
||||
#define ASSERTMSG(x)
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue