ecore_evas win32: fix warning reported by clang

Test Plan: compilation

Reviewers: zmike, raster, cedric, Hermet

Reviewed By: Hermet

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9025
This commit is contained in:
Vincent Torri 2019-05-27 15:58:51 +09:00 committed by Hermet Park
parent 0732606118
commit 7a882ab02c
1 changed files with 1 additions and 1 deletions

View File

@ -1013,7 +1013,7 @@ _ecore_evas_win32_alpha_set(Ecore_Evas *ee, int alpha)
#warning "We need to handle window with alpha channel."
/* Ecore_Evas_Engine_Data_Win32 *wdata = ee->engine.data; */
alpha = !!alpha;
if ((ee->alpha == alpha)) return;
if (ee->alpha == alpha) return;
if (!strcmp(ee->driver, "software_gdi"))
{