devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=04e108dbac89f038b166b471dca0bfb2b9dd7528

commit 04e108dbac89f038b166b471dca0bfb2b9dd7528
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Thu Feb 4 11:19:56 2016 -0500

    correctly wrap 1.18 API function calls
    
    Signed-off-by: Chris Michael <cpmich...@osg.samsung.com>
---
 src/modules/wl_drm/e_mod_main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c
index 69f2e78..adb3538 100644
--- a/src/modules/wl_drm/e_mod_main.c
+++ b/src/modules/wl_drm/e_mod_main.c
@@ -476,7 +476,7 @@ _drm_randr_create(void)
                               s->config.geom.w, s->config.geom.h);
                     }
 
-#ifdef (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 18)
+#if (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 18)
                   rotations =
                     ecore_drm_output_supported_rotations_get(output,
                                                              
ECORE_DRM_PLANE_TYPE_PRIMARY);
@@ -604,7 +604,7 @@ _drm_randr_apply(void)
 
                   ecore_drm_output_mode_set(out, mode,
                                             s->config.geom.x, 
s->config.geom.y);
-#ifdef (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 18)
+#if (EFL_VERSION_MAJOR > 1) || (EFL_VERSION_MINOR >= 18)
                   ecore_drm_output_rotation_set(out,
                                                 ECORE_DRM_PLANE_TYPE_PRIMARY,
                                                 orient);

-- 


Reply via email to