From: Sebastian Dröge Date: Tue, 6 Mar 2012 13:56:20 +0000 (+0100) Subject: dfbvideosink: Fix 'implicit conversion from enumeration type 'DirectResult' to differ... X-Git-Tag: RELEASE-0.11.90~10^2~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3482b7b219b588cc4fd52a72a8ee98f149fd277e;p=platform%2Fupstream%2Fgst-plugins-bad.git dfbvideosink: Fix 'implicit conversion from enumeration type 'DirectResult' to different enumeration type 'DFBResult'' compiler warning We're not checking the return value of that function anyway. --- diff --git a/ext/directfb/dfbvideosink.c b/ext/directfb/dfbvideosink.c index c3417a5..737096b 100644 --- a/ext/directfb/dfbvideosink.c +++ b/ext/directfb/dfbvideosink.c @@ -1613,7 +1613,7 @@ gst_dfbvideosink_show_frame (GstBaseSink * bsink, GstBuffer * buf) res = dest->Unlock (dest); - res = dest->Release (dest); + dest->Release (dest); if (dfbvideosink->backbuffer) { if (dfbvideosink->vsync) {