jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f9c7d25b0845ab0c99cee402700d046ae318da39

commit f9c7d25b0845ab0c99cee402700d046ae318da39
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Jul 28 11:27:08 2015 +0900

    Evas filters: Disable debug code path
---
 src/lib/evas/filters/evas_filter_parser.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/evas/filters/evas_filter_parser.c 
b/src/lib/evas/filters/evas_filter_parser.c
index bb3f38b..ce5fa1d 100644
--- a/src/lib/evas/filters/evas_filter_parser.c
+++ b/src/lib/evas/filters/evas_filter_parser.c
@@ -2208,10 +2208,10 @@ static inline void
 _lua_import_path_get(char *path, size_t len, const char *name)
 {
    const char *pfx = _evas_module_datadir_get();
-   struct stat st;
    size_t r;
 
-//#ifdef FILTERS_DEBUG
+#ifdef FILTERS_DEBUG
+   struct stat st;
    // This is a hack to fetch the most recent file from source
    if (stat(path, &st) == -1)
      {
@@ -2231,7 +2231,7 @@ _lua_import_path_get(char *path, size_t len, const char 
*name)
         free(src);
         if (!stat(path, &st)) return;
      }
-//#endif
+#endif
 
    r = snprintf(path, len - 1, "%s/filters/lua/%s.lua", pfx ? pfx : ".", name);
    if (r >= len) path[len - 1] = '\0';

-- 


Reply via email to