Fixed parameter type.
authorSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Thu, 19 May 2011 15:01:38 +0000 (17:01 +0200)
committerSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Thu, 19 May 2011 15:01:38 +0000 (17:01 +0200)
token.c

diff --git a/token.c b/token.c
index 7c8fbe5..2f80a71 100644 (file)
--- a/token.c
+++ b/token.c
@@ -45,7 +45,7 @@ static symbol_t *intern_register_token(token_type_t id, const char *string)
        return symbol;
 }
 
-static symbol_t *intern_register_pp_token(token_type_t id, const char *string)
+static symbol_t *intern_register_pp_token(preprocessor_token_type_t id, const char *string)
 {
        assert(0 <= id && id < TP_LAST_TOKEN);
        symbol_t *symbol = symbol_table_insert(string);