summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2015-10-14 09:39:52 -0400
committerChris Michael <cp.michael@samsung.com>2015-10-14 09:39:52 -0400
commitfebae611a7a0952b06bdf07f92f40b533f20b992 (patch)
tree53175b973b5a58b688009e601bb47613b31c2221
parenta2c1faef70e4e6b01190fee7750a5c9b15b70d5b (diff)
downloadefl-febae611a7a0952b06bdf07f92f40b533f20b992.tar.gz
ecore-evas-wayland-egl: Fix clang warning about extra parentheses
@fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c
index 71c7e0280e..7d9560647f 100644
--- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c
+++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_egl.c
@@ -413,7 +413,7 @@ _ecore_evas_wayland_egl_alpha_do(Ecore_Evas *ee, int alpha)
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (!ee) return;
- if ((ee->alpha == alpha)) return;
+ if (ee->alpha == alpha) return;
ee->alpha = alpha;
wdata = ee->engine.data;
@@ -453,7 +453,7 @@ _ecore_evas_wayland_egl_transparent_do(Ecore_Evas *ee, int transparent)
LOGFN(__FILE__, __LINE__, __FUNCTION__);
if (!ee) return;
- if ((ee->transparent == transparent)) return;
+ if (ee->transparent == transparent) return;
ee->transparent = transparent;
wdata = ee->engine.data;