hermet pushed a commit to branch master.

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

commit 0f5a5fc19e305b366db58a2d44ca74fddd2b5aca
Author: ChunEon Park <her...@hermet.pe.kr>
Date:   Thu Dec 18 09:09:33 2014 +0900

    edje/cpplib: fix formatting
---
 src/bin/edje/epp/cpplib.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c
index 3cfc3a8..0659000 100644
--- a/src/bin/edje/epp/cpplib.c
+++ b/src/bin/edje/epp/cpplib.c
@@ -3324,20 +3324,21 @@ do_include(cpp_reader * pfile, struct directive 
*keyword,
      {
        strncpy(fname, (const char *)fbeg, flen);
        fname[flen] = 0;
-       if (redundant_include_p(pfile, fname))
-      {
-         free(fname);
-         return 0;
-      }
+        if (redundant_include_p(pfile, fname))
+          {
+             free(fname);
+             return 0;
+          }
        if (importing)
           f = lookup_import(pfile, fname, NULL);
        else
           f = open_include_file(pfile, fname, NULL);
-       if (f == -2)
-      {
-         free(fname);
-         return 0;             /* Already included this file */
-      }
+        /* Already included this file */
+        if (f == -2)
+          {
+             free(fname);
+             return 0;
+          }
      }
    else
      {

-- 


Reply via email to