cedric pushed a commit to branch master.

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

commit 7b2aecff7916fa09d18dd704ecca294558341376
Author: Cedric BAIL <ced...@osg.samsung.com>
Date:   Fri Oct 31 10:45:28 2014 +0100

    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 57ddc62..ef35ef2 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);

-- 


Reply via email to