From 7b2aecff7916fa09d18dd704ecca294558341376 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 31 Oct 2014 10:45:28 +0100 Subject: [PATCH] edje: use the right variable. Thanks michelle_lg. --- src/bin/edje/edje_cc_parse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/edje/edje_cc_parse.c b/src/bin/edje/edje_cc_parse.c index 57ddc62ac9..ef35ef2e36 100644 --- a/src/bin/edje/edje_cc_parse.c +++ b/src/bin/edje/edje_cc_parse.c @@ -976,13 +976,13 @@ compile(void) snprintf(buf, sizeof(buf), "%s -anotate -a %s %s -I%s %s -o %s" " -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", buf2, watchfile ? watchfile : "/dev/null", file_in, - inc, def, tmpn, + inc, def, clean_file, EINA_VERSION_MAJOR, EINA_VERSION_MINOR); else snprintf(buf, sizeof(buf), "%s -a %s %s -I%s %s -o %s" " -DEFL_VERSION_MAJOR=%d -DEFL_VERSION_MINOR=%d", buf2, watchfile ? watchfile : "/dev/null", file_in, - inc, def, tmpn, + inc, def, clean_file, EINA_VERSION_MAJOR, EINA_VERSION_MINOR); ret = system(buf); } @@ -992,7 +992,7 @@ compile(void) exit(-1); } if (ret == EXIT_SUCCESS) - file_in = (char *)tmpn; + file_in = (char *)clean_file; else { ERR("Exit code of epp not clean: %i", ret);