mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[KMTEST]
cast the unused 0 in the ok macro to void to make clang happy as done for wine test.h svn path=/trunk/; revision=47455
This commit is contained in:
parent
3f536523c1
commit
2e0bbab8ca
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ extern int kmtest_ok( int condition, const char *msg, ... );
|
|||
#endif /* __GNUC__ */
|
||||
|
||||
|
||||
#define ok_(file, line) (kmtest_set_location(file, line), 0) ? 0 : kmtest_ok
|
||||
#define ok_(file, line) (kmtest_set_location(file, line), 0) ? (void)0 : kmtest_ok
|
||||
#define ok ok_(__FILE__, __LINE__)
|
||||
|
||||
PDEVICE_OBJECT AttachDeviceObject;
|
||||
|
|
Loading…
Reference in a new issue