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

Remove dangling variables

parent 25bade83
...@@ -1598,8 +1598,6 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win ) ...@@ -1598,8 +1598,6 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win )
XGCValues xgcvalues; XGCValues xgcvalues;
XEvent xevent; XEvent xevent;
bool b_expose = false;
bool b_configure_notify = false;
bool b_map_notify = false; bool b_map_notify = false;
vlc_value_t val; vlc_value_t val;
...@@ -1729,9 +1727,6 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win ) ...@@ -1729,9 +1727,6 @@ static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win )
&p_win->i_height, &p_win->i_height,
&dummy4, &dummy5 ); &dummy4, &dummy5 );
/* We are already configured */
b_configure_notify = true;
/* From man XSelectInput: only one client at a time can select a /* From man XSelectInput: only one client at a time can select a
* ButtonPress event, so we need to open a new window anyway. */ * ButtonPress event, so we need to open a new window anyway. */
p_win->base_window = p_win->base_window =
......
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