Skip to content
Snippets Groups Projects
Commit 96af8c2f authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed gcc varargs macro syntax (reported by Gabriele Giorgetti).

parent d73a1c46
No related branches found
No related tags found
No related merge requests found
......@@ -81,14 +81,14 @@ enum __WINE_DEBUG_CLASS {
#ifdef NO_TRACE_MSGS
#define WINE_TRACE(...) do { } while(0)
#define WINE_TRACE(args...) do { } while(0)
#define WINE_TRACE_(ch) WINE_TRACE
#endif
#ifdef NO_DEBUG_MSGS
#define WINE_WARN(...) do { } while(0)
#define WINE_WARN(args...) do { } while(0)
#define WINE_WARN_(ch) WINE_WARN
#define WINE_FIXME(...) do { } while(0)
#define WINE_FIXME(args...) do { } while(0)
#define WINE_FIXME_(ch) WINE_FIXME
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment