Commit 1b6ae34d authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix unintialised variable warning

parent 10ff158f
......@@ -1998,7 +1998,7 @@ static int VideoConfig( vlc_object_t *p_this, char const *psz_cmd,
/* get */
vlc_value_t val, text;
int i;
float f_value;
float f_value = 0.0;
char *psz_value = NULL;
if ( var_Get( p_vout, psz_variable, &val ) < 0 )
......
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