Commit 88e83ca0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 Return VLC_SUCCESS instead of 0

parent 5ddf30fd
......@@ -332,7 +332,7 @@ static int ChangeAudio( vlc_object_t *p_this, const char *var, vlc_value_t o,
{
InputManager *im = (InputManager*)param;
im->b_has_audio = true;
return 0;
return VLC_SUCCESS;
}
static int ChangeVideo( vlc_object_t *p_this, const char *var, vlc_value_t o,
......@@ -340,5 +340,5 @@ static int ChangeVideo( vlc_object_t *p_this, const char *var, vlc_value_t o,
{
InputManager *im = (InputManager*)param;
im->b_has_video = true;
return 0;
return VLC_SUCCESS;
}
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