Commit c7c2fbc2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Compile fix

parent f5d10727
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#endif #endif
#include <inttypes.h> #include <inttypes.h>
#include <assert.h>
#include <xcb/xcb.h> #include <xcb/xcb.h>
...@@ -136,7 +137,7 @@ int ProcessEvent (vout_thread_t *vout, xcb_connection_t *conn, ...@@ -136,7 +137,7 @@ int ProcessEvent (vout_thread_t *vout, xcb_connection_t *conn,
xcb_configure_notify_event_t *cn = xcb_configure_notify_event_t *cn =
(xcb_configure_notify_event_t *)ev; (xcb_configure_notify_event_t *)ev;
assert (cn->window != window) assert (cn->window != window);
HandleParentStructure (vout, conn, window, cn); HandleParentStructure (vout, conn, window, cn);
break; break;
} }
......
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