[vlc-devel] commit: Compile fix ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Apr 9 18:19:40 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Apr 9 19:18:30 2009 +0300| [c7c2fbc24c4dab4e8f1a2b467c1c22c47731418f] | committer: Rémi Denis-Courmont
Compile fix
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c7c2fbc24c4dab4e8f1a2b467c1c22c47731418f
---
modules/video_output/xcb/events.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/modules/video_output/xcb/events.c b/modules/video_output/xcb/events.c
index bffe407..4ed2b41 100644
--- a/modules/video_output/xcb/events.c
+++ b/modules/video_output/xcb/events.c
@@ -25,6 +25,7 @@
#endif
#include <inttypes.h>
+#include <assert.h>
#include <xcb/xcb.h>
@@ -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 *)ev;
- assert (cn->window != window)
+ assert (cn->window != window);
HandleParentStructure (vout, conn, window, cn);
break;
}
More information about the vlc-devel
mailing list