Kaydet (Commit) f0eb45df authored tarafından Luboš Luňák's avatar Luboš Luňák

fix some lousy formatting that triggers warnings from the compiler plugin

Change-Id: I94cafba5363f24d608add6878c72f230f45fdb87
üst 7c4d3ea6
......@@ -204,8 +204,8 @@ int main(argc, argv)
close(afd);
for (p = args; *p; p++) {
if (quotechar) {
if (quotechar == '\\' ||
(*p == quotechar && p[-1] != '\\'))
if (quotechar == '\\'
|| (*p == quotechar && p[-1] != '\\'))
quotechar = '\0';
continue;
}
......
......@@ -70,11 +70,9 @@ int find_includes(struct filepointer *filep, struct inclist *file, struct inclis
if (type == ELSE)
find_includes(filep, file,
file_red, recursion+1, recfailOK, incCollection, symbols);
else
if (type == ELIF)
else if (type == ELIF)
goto doif;
else
if ((type == ELIFFALSE) || (type == ELIFGUESSFALSE))
else if ((type == ELIFFALSE) || (type == ELIFGUESSFALSE))
goto doiffalse;
break;
case IFDEF:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment