diff options
Diffstat (limited to 'libcpp/traditional.c')
-rw-r--r-- | libcpp/traditional.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/traditional.c b/libcpp/traditional.c index 6c4dda1..1a38425 100644 --- a/libcpp/traditional.c +++ b/libcpp/traditional.c @@ -253,8 +253,8 @@ lex_identifier (cpp_reader *pfile, const uchar *cur) CUR (pfile->context) = cur; len = out - pfile->out.cur; - result = (cpp_hashnode *) ht_lookup (pfile->hash_table, pfile->out.cur, - len, HT_ALLOC); + result = CPP_HASHNODE (ht_lookup (pfile->hash_table, pfile->out.cur, + len, HT_ALLOC)); pfile->out.cur = out; return result; } |