X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=preprocessor.c;h=804921f691e765583fbc25da7dc5cede0a59a3d0;hb=103d024a3572a6607bd7d18a129b93d2dbfeff82;hp=9c4dd66aadefac1c9d1449732094e4b1fbe5cb9b;hpb=2beaa4f65961fe297663e1cec9e5632b7f3e1cba;p=cparser diff --git a/preprocessor.c b/preprocessor.c index 9c4dd66..804921f 100644 --- a/preprocessor.c +++ b/preprocessor.c @@ -770,9 +770,9 @@ static void skip_spaces(bool skip_newline) switch (CC) { case ' ': case '\t': - if(do_print_spaces) + if (do_print_spaces) counted_spaces++; - next_char(); + next_char(); continue; case '/': next_char(); @@ -975,9 +975,9 @@ restart: switch(CC) { case ' ': case '\t': - if(do_print_spaces) + if (do_print_spaces) counted_spaces++; - next_char(); + next_char(); goto restart; MATCH_NEWLINE( @@ -1396,7 +1396,7 @@ static void parse_define_directive(void) if (old_definition != NULL) { if (!pp_definitions_equal(old_definition, new_definition)) { warningf(&input.position, "multiple definition of macro '%Y' (first defined %P)", - symbol, &old_definition->source_position); + symbol, &old_definition->source_position); } else { /* reuse the old definition */ obstack_free(&pp_obstack, new_definition);