pad: Minor code cleanup
authorSebastian Dröge <sebastian@centricular.com>
Wed, 22 Jan 2014 10:10:01 +0000 (11:10 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 22 Jan 2014 10:10:01 +0000 (11:10 +0100)
!check_sticky()==GST_FLOW_OK is a bit confusing, compared to
check_sticky()!=GST_FLOW_OK.

gst/gstpad.c

index 509f682..4b9f2a7 100644 (file)
@@ -3635,7 +3635,7 @@ gst_pad_peer_query (GstPad * pad, GstQuery * query)
   if (GST_PAD_IS_SRC (pad) && serialized) {
     /* all serialized queries on the srcpad trigger push of
      * sticky events */
-    if (!check_sticky (pad, NULL) == GST_FLOW_OK)
+    if (check_sticky (pad, NULL) != GST_FLOW_OK)
       goto sticky_failed;
   }