From: Laurent Aimar Date: Mon, 26 Jan 2009 21:43:55 +0000 (+0100) Subject: Fixed compilation warning (missing return value). X-Git-Tag: 1.0.0-pre1~1026 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=dbc8628b2a404a5ced1caf867ed6d54263cd3284;p=vlc Fixed compilation warning (missing return value). --- diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c index d008606ffe..89cc527877 100644 --- a/src/video_output/vout_intf.c +++ b/src/video_output/vout_intf.c @@ -1221,6 +1221,8 @@ static int ScalingCallback( vlc_object_t *p_this, char const *psz_cmd, p_vout->i_changes |= VOUT_SIZE_CHANGE; vlc_mutex_unlock( &p_vout->change_lock ); + + return VLC_SUCCESS; } static int OnTopCallback( vlc_object_t *p_this, char const *psz_cmd,