Removed unintentional trailing spaces in non-external and non-generated C files.

This commit is contained in:
Serhiy Storchaka 2015-03-18 21:53:15 +02:00
parent 6c32585f67
commit 009b811d67
25 changed files with 56 additions and 56 deletions

View file

@ -2788,7 +2788,7 @@ validate_argument(node *tree)
int nch = NCH(tree);
int res = (validate_ntype(tree, argument)
&& ((nch == 1) || (nch == 2) || (nch == 3)));
if (res)
if (res)
res = validate_test(CHILD(tree, 0));
if (res && (nch == 2))
res = validate_comp_for(CHILD(tree, 1));