diff options
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpret.h b/interpret.h index 66f5b0de..67a702e3 100644 --- a/interpret.h +++ b/interpret.h @@ -852,7 +852,7 @@ match_re: if (t1->stlen > 0) { /* retrieve function definition node */ f = pc->func_body; - if (f != NULL && STREQ(f->vname, t1->stptr)) { + if (f != NULL && strcmp(f->vname, t1->stptr) == 0) { /* indirect var hasn't been reassigned */ goto func_call; |