aboutsummaryrefslogtreecommitdiff
path: root/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'expr.c')
-rw-r--r--expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.c b/expr.c
index 955b73f..1fe280c 100644
--- a/expr.c
+++ b/expr.c
@@ -906,7 +906,7 @@ postfixexpr(struct scope *s, struct expr *r)
case TLPAREN: /* function call */
next();
if (r->kind == EXPRIDENT && r->u.ident.decl->kind == DECLBUILTIN) {
- e = builtinfunc(s, r->u.ident.decl->builtin);
+ e = builtinfunc(s, r->u.ident.decl->u.builtin);
expect(TRPAREN, "after builtin parameters");
break;
}