Commit f8e76fd6 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Events.c: mitigate compiler warning

"ISO C forbids assignment between function pointer and 'void *' [-pedantic]"
parent 9f4eb6a0
......@@ -821,7 +821,7 @@ void nxagentDispatchEvents(PredicateFuncPtr predicate)
#ifdef TEST
fprintf(stderr, "nxagentDispatchEvents: Going to handle new events with "
"predicate [%p].\n", predicate);
"predicate [%p].\n", *(void **)&predicate);
#endif
if (nxagentRemoteExposeRegion == NULL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment