style cleanup: follow style guide for formatting of if/for/while loops, and else if's

This commit is contained in:
2012-03-24 06:24:53 +00:00
parent 69e6894b15
commit 5a90ea77bc
90 changed files with 2501 additions and 2337 deletions

View File

@@ -707,7 +707,7 @@ char *PyC_FlagSet_AsString(PyC_FlagSet *item)
int PyC_FlagSet_ValueFromID_int(PyC_FlagSet *item, const char *identifier, int *value)
{
for( ; item->identifier; item++) {
for ( ; item->identifier; item++) {
if (strcmp(item->identifier, identifier) == 0) {
*value = item->value;
return 1;