From da3bf74ba8946f88b892907361f86f567301be83 Mon Sep 17 00:00:00 2001 From: Teddy Date: Tue, 25 Mar 2014 00:45:52 +0800 Subject: ... --- cibic.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cibic.y') diff --git a/cibic.y b/cibic.y index a4f7eb2..0a98097 100644 --- a/cibic.y +++ b/cibic.y @@ -303,7 +303,7 @@ postfix $$ = cnode_create_exp(POSTFIX_CALL, 1, cnode_list_wrap(ARGS, $2)); } | '(' ')' { - $$ = cnode_create_exp(POSTFIX_CALL, 1, cnode_list_wrap(cnode_create_nop())); + $$ = cnode_create_exp(POSTFIX_CALL, 1, cnode_list_wrap(ARGS, cnode_create_nop())); } | '.' identifier { $$ = cnode_create_exp(POSTFIX_DOT, 1, $2); } | OPT_PTR identifier { $$ = cnode_create_exp(POSTFIX_PTR, 1, $2); } -- cgit v1.2.3