X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=preprocessor.c;h=2d9a1a42f2a9741ef7e612ff79c67998ce52f168;hb=e0a1f3bda124fbc9ed278145548da80902c7358a;hp=39b2bb7cc46b90cdbabd01c762f8890cc648a88c;hpb=02f47f268839c472e23095ac0025e5ccbb5ed70a;p=cparser diff --git a/preprocessor.c b/preprocessor.c index 39b2bb7..2d9a1a4 100644 --- a/preprocessor.c +++ b/preprocessor.c @@ -184,7 +184,7 @@ static inline void next_real_char(void) if (input.bufpos >= input.bufend) { size_t s = fread(input.buf + MAX_PUTBACK, 1, sizeof(input.buf) - MAX_PUTBACK, input.file); - if(s == 0) { + if (s == 0) { CC = EOF; return; } @@ -880,7 +880,7 @@ static void skip_spaces(bool skip_newline) } } -static void eat_pp(preprocessor_token_type_t type) +static void eat_pp(int type) { (void) type; assert(pp_token.type == type);