diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-24 22:15:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-03-24 22:15:31 +0200 |
commit | 080694ae82635e76992158591b39a06af7363da0 (patch) | |
tree | 454a9361afa2904702baac9b3777fe76e721d7ca /interpret.h | |
parent | 75459887958f5246bc5126261ec92c8f4d366a47 (diff) | |
download | egawk-080694ae82635e76992158591b39a06af7363da0.tar.gz egawk-080694ae82635e76992158591b39a06af7363da0.tar.bz2 egawk-080694ae82635e76992158591b39a06af7363da0.zip |
Further progress on indirect calls of builtins.
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 9160d479..f9aa3115 100644 --- a/interpret.h +++ b/interpret.h @@ -1066,7 +1066,7 @@ match_re: assert(the_func != NULL); /* call it */ - if (the_func == do_sub) + if (the_func == (builtin_func_t) do_sub) r = call_sub_func(t1->stptr, arg_count); else r = the_func(arg_count); |