From 3482b7b219b588cc4fd52a72a8ee98f149fd277e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 6 Mar 2012 14:56:20 +0100 Subject: [PATCH] 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. --- ext/directfb/dfbvideosink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/directfb/dfbvideosink.c b/ext/directfb/dfbvideosink.c index c3417a5e15..737096b98a 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) {