From 9ca5ea58170d5285fa03ae2aa1ba51c466266dd7 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 28 Dec 2016 19:54:26 +0900 Subject: [PATCH] efm - fix ifs to be ifdef as they should be --- src/bin/e_fm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 1a4ee292c..b05ef1ec7 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -547,7 +547,7 @@ _e_fm2_icon_path(const E_Fm2_Icon *ic, char *buf, int buflen) static inline Eina_Bool _e_fm2_ext_is_edje(const char *ext) { -#if E_FM2_SIMPLE_STRCASE_FILES +#ifdef E_FM2_SIMPLE_STRCASE_FILES if ((ext[0] == 'e') && (ext[1] == 'd') && (ext[2] == 'j')) return 1; else if ((ext[0] == 'E') && (ext[1] == 'D') && (ext[2] == 'J')) @@ -562,7 +562,7 @@ _e_fm2_ext_is_edje(const char *ext) static inline Eina_Bool _e_fm2_ext_is_desktop(const char *ext) { -#if E_FM2_SIMPLE_STRCASE_FILES +#ifdef E_FM2_SIMPLE_STRCASE_FILES if ((ext[0] == 'd') && ((strcmp(ext + 1, "esktop") == 0) || (strcmp(ext + 1, "irectory") == 0))) @@ -586,7 +586,7 @@ _e_fm2_ext_is_desktop(const char *ext) static inline Eina_Bool _e_fm2_ext_is_imc(const char *ext) { -#if E_FM2_SIMPLE_STRCASE_FILES +#ifdef E_FM2_SIMPLE_STRCASE_FILES if ((ext[0] == 'i') && (ext[1] == 'm') && (ext[2] == 'c')) return 1; else if ((ext[0] == 'I') && (ext[1] == 'M') && (ext[2] == 'C'))