Commit eb461c0d authored by JP Dinger's avatar JP Dinger

Fix a uninitialized variable warning in xcb/xvideo.c.

parent dacbb93b
...@@ -698,7 +698,7 @@ static int Control (vout_display_t *vd, int query, va_list ap) ...@@ -698,7 +698,7 @@ static int Control (vout_display_t *vd, int query, va_list ap)
{ {
const vout_display_cfg_t *cfg; const vout_display_cfg_t *cfg;
const video_format_t *source; const video_format_t *source;
bool is_forced; bool is_forced = false;
if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
|| query == VOUT_DISPLAY_CHANGE_SOURCE_CROP) || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
......
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