diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-12-22 17:35:08 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-12-22 17:35:08 +0200 |
commit | cd820dc4359b8dc1a40fedc0c5d3924ed8f88df0 (patch) | |
tree | 17ce84a9a1907783c7839b2dd6fd9afefe303815 /ext.c | |
parent | 0eb15bcef4ca13a329c9bf3d5e608e29bbce42ad (diff) | |
parent | 0f15f82e19b32823fe3fdf51052389ca3b60e92e (diff) | |
download | egawk-cd820dc4359b8dc1a40fedc0c5d3924ed8f88df0.tar.gz egawk-cd820dc4359b8dc1a40fedc0c5d3924ed8f88df0.tar.bz2 egawk-cd820dc4359b8dc1a40fedc0c5d3924ed8f88df0.zip |
Merge branch 'master' into feature/regex-to-api
Diffstat (limited to 'ext.c')
-rw-r--r-- | ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -136,7 +136,7 @@ make_builtin(const awk_ext_func_t *funcinfo) b = bcalloc(Op_symbol, 1, 0); b->extfunc = funcinfo->function; - b->expr_count = count; + b->c_func = (awk_ext_func_t *) funcinfo; /* NB: extension sub must return something */ |