From 902a9a56d05829d6be52941a30e80a3de69ca2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 21 Jun 2014 16:57:18 +0200 Subject: [PATCH] waylandsink: Fix compiler warning gstwaylandsink.c:480:14: error: comparison of constant -1 with expression of type 'enum wl_shm_format' is always false [-Werror,-Wtautological-constant-out-of-range-compare] if (format == -1) ~~~~~~ ^ ~~ --- ext/wayland/gstwaylandsink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/wayland/gstwaylandsink.c b/ext/wayland/gstwaylandsink.c index c5556e7bda..365df7ce5a 100644 --- a/ext/wayland/gstwaylandsink.c +++ b/ext/wayland/gstwaylandsink.c @@ -477,7 +477,7 @@ gst_wayland_sink_set_caps (GstBaseSink * bsink, GstCaps * caps) goto invalid_format; format = gst_video_format_to_wayland_format (GST_VIDEO_INFO_FORMAT (&info)); - if (format == -1) + if ((gint) format == -1) goto invalid_format; /* verify we support the requested format */