aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-03-24 22:15:31 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-03-24 22:15:31 +0200
commit080694ae82635e76992158591b39a06af7363da0 (patch)
tree454a9361afa2904702baac9b3777fe76e721d7ca /interpret.h
parent75459887958f5246bc5126261ec92c8f4d366a47 (diff)
downloadegawk-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.h2
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);