diff -r 4489afa5b1c5 -r 7474d2cd1d6e absyntax_utils/function_call_iterator.cc --- a/absyntax_utils/function_call_iterator.cc Sun Nov 30 12:49:42 2014 +0000 +++ b/absyntax_utils/function_call_iterator.cc Sat Dec 06 19:11:32 2014 +0000 @@ -89,10 +89,10 @@ } /* Returns the name of the currently referenced function invocation */ -identifier_c *function_call_iterator_c::fname(void) { - identifier_c *identifier = dynamic_cast(current_fcall_name); - if (identifier == NULL) ERROR; - return identifier; +token_c *function_call_iterator_c::fname(void) { + token_c *fname_sym = dynamic_cast(current_fcall_name); + if (fname_sym == NULL) ERROR; + return fname_sym; }