Skip to content
Snippets Groups Projects
Commit 9ab8f6a5 authored by Alan Coopersmith's avatar Alan Coopersmith
Browse files

DeqAsyncHandler: add do ... while (0) to avoid -Wextra-semi-stmt warnings


Clears 12 warnings from clang of the form:

cmsCmap.c:194:34: warning: empty expression statement has no effect;
 remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
            DeqAsyncHandler(dpy, &async);
                                        ^

Signed-off-by: default avatarAlan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <!272>
parent 8703ecf1
No related branches found
No related tags found
1 merge request!272Handle 186 -Wextra-semi-stmt warnings from clang
......@@ -804,12 +804,12 @@ typedef struct _XAsyncEState {
} _XAsyncErrorState;
extern void _XDeqAsyncHandler(Display *dpy, _XAsyncHandler *handler);
#define DeqAsyncHandler(dpy,handler) { \
#define DeqAsyncHandler(dpy,handler) do { \
if (dpy->async_handlers == (handler)) \
dpy->async_handlers = (handler)->next; \
else \
_XDeqAsyncHandler(dpy, handler); \
}
} while (0)
typedef void (*FreeFuncType) (
Display* /* display */
......
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