Commit 89f8daf2 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_output/x11/xcommon.c: compilation fixes.

parent c2633d59
...@@ -977,13 +977,14 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win ) ...@@ -977,13 +977,14 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win )
} }
else else
{ {
Window dummy1;
unsigned int dummy2, dummy3;
/* Select events we are interested in. */ /* Select events we are interested in. */
XSelectInput( p_vout->p_sys->p_display, p_win->owner_window, XSelectInput( p_vout->p_sys->p_display, p_win->owner_window,
StructureNotifyMask ); StructureNotifyMask );
/* Get the parent window's geometry information */ /* Get the parent window's geometry information */
Window dummy1;
unsigned int dummy2, dummy3;
XGetGeometry( p_vout->p_sys->p_display, p_win->owner_window, XGetGeometry( p_vout->p_sys->p_display, p_win->owner_window,
&dummy1, &dummy2, &dummy3, &dummy1, &dummy2, &dummy3,
&p_win->i_width, &p_win->i_width,
......
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