mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[WINE]
Cast the unused 0 in the ok macro to void to make clang happy svn path=/trunk/; revision=47450
This commit is contained in:
parent
8e44cb3688
commit
25b2c670c4
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ extern void winetest_trace( const char *msg, ... );
|
|||
|
||||
#endif /* __GNUC__ */
|
||||
|
||||
#define ok_(file, line) (winetest_set_location(file, line), 0) ? 0 : winetest_ok
|
||||
#define ok_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_ok
|
||||
#define skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_skip
|
||||
#define win_skip_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_win_skip
|
||||
#define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace
|
||||
|
|
Loading…
Reference in a new issue