X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=symbol_table.c;h=64f2c224d9bd62310868e101a534c7d97a3b2553;hb=2318f89b43538d07bf531d950e97de33962b574d;hp=5a448e9c550fe9e7255e2f0f3386d4d0992c66cb;hpb=e97bf80ad2ba7f01d4a2b51d243d6273ae2d65a1;p=cparser diff --git a/symbol_table.c b/symbol_table.c index 5a448e9..64f2c22 100644 --- a/symbol_table.c +++ b/symbol_table.c @@ -1,6 +1,6 @@ /* * This file is part of cparser. - * Copyright (C) 2007-2008 Matthias Braun + * Copyright (C) 2007-2009 Matthias Braun * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -66,9 +66,9 @@ void init_symbol_table_entry(symbol_t *entry, const char *string) static symbol_table_t symbol_table; -symbol_t *symbol_table_insert(const char *symbol) +symbol_t *symbol_table_insert(const char *string) { - return _symbol_table_insert(&symbol_table, symbol); + return _symbol_table_insert(&symbol_table, string); } void init_symbol_table(void)