edje/cpplib: fix formatting

This commit is contained in:
ChunEon Park 2014-12-18 09:09:33 +09:00
parent 6d0b834a76
commit 0f5a5fc19e
1 changed files with 11 additions and 10 deletions

View File

@ -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
{