mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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.
This commit is contained in:
parent
4b42d5c5c6
commit
3482b7b219
1 changed files with 1 additions and 1 deletions
|
@ -1613,7 +1613,7 @@ gst_dfbvideosink_show_frame (GstBaseSink * bsink, GstBuffer * buf)
|
||||||
|
|
||||||
res = dest->Unlock (dest);
|
res = dest->Unlock (dest);
|
||||||
|
|
||||||
res = dest->Release (dest);
|
dest->Release (dest);
|
||||||
|
|
||||||
if (dfbvideosink->backbuffer) {
|
if (dfbvideosink->backbuffer) {
|
||||||
if (dfbvideosink->vsync) {
|
if (dfbvideosink->vsync) {
|
||||||
|
|
Loading…
Reference in a new issue