[vlc-devel] commit: Fixed compilation warning (missing return value). (Laurent Aimar )
git version control
git at videolan.org
Mon Jan 26 22:50:32 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Jan 26 22:43:55 2009 +0100| [dbc8628b2a404a5ced1caf867ed6d54263cd3284] | committer: Laurent Aimar
Fixed compilation warning (missing return value).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dbc8628b2a404a5ced1caf867ed6d54263cd3284
---
src/video_output/vout_intf.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index d008606..89cc527 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,
More information about the vlc-devel
mailing list