From f9c7d25b0845ab0c99cee402700d046ae318da39 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Tue, 28 Jul 2015 11:27:08 +0900 Subject: [PATCH] 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 bb3f38b0e3..ce5fa1d747 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';