projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d0b834
)
edje/cpplib: fix formatting
author
ChunEon Park
<hermet@hermet.pe.kr>
Thu, 18 Dec 2014 00:09:33 +0000
(09:09 +0900)
committer
ChunEon Park
<hermet@hermet.pe.kr>
Thu, 18 Dec 2014 00:09:33 +0000
(09:09 +0900)
src/bin/edje/epp/cpplib.c
patch
|
blob
|
history
diff --git
a/src/bin/edje/epp/cpplib.c
b/src/bin/edje/epp/cpplib.c
index 3cfc3a8e2ffd255415702365d6b3c063c5223d48..0659000f014de7ebca2d37a83f2c9de5dad2dbe0 100644
(file)
--- 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
{