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)
      ~~~~~~ ^  ~~
This commit is contained in:
Sebastian Dröge 2014-06-21 16:57:18 +02:00
parent 59bdcd9ae3
commit 902a9a56d0

View file

@ -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 */