From 7c32cfd661abf01b94e007ee841fe8c655a40ce6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 6 Mar 2012 12:23:15 +0100 Subject: [PATCH] basetransform: Fix 'equality comparison with extraneous parentheses' compiler warning --- libs/gst/base/gstbasetransform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c index dfaa359..e1fbaa9 100644 --- a/libs/gst/base/gstbasetransform.c +++ b/libs/gst/base/gstbasetransform.c @@ -2655,7 +2655,7 @@ gst_base_transform_chain (GstPad * pad, GstBuffer * buffer) /* outbuf can be NULL, this means a dropped buffer, if we have a buffer but * GST_BASE_TRANSFORM_FLOW_DROPPED we will not push either. */ if (outbuf != NULL) { - if ((ret == GST_FLOW_OK)) { + if (ret == GST_FLOW_OK) { GstClockTime last_stop_out = GST_CLOCK_TIME_NONE; /* Remember last stop position */ -- 2.7.4