aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-12-22 17:37:49 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-12-22 17:37:49 +0200
commitaf6f677758c6b873fb3130b34705e2a705270a75 (patch)
tree64de0a1c1d969e5ce687e873535637c117d60935 /ext.c
parent293b5a86a9053668773e75b35682c41ca64e0db6 (diff)
parentcd820dc4359b8dc1a40fedc0c5d3924ed8f88df0 (diff)
downloadegawk-af6f677758c6b873fb3130b34705e2a705270a75.tar.gz
egawk-af6f677758c6b873fb3130b34705e2a705270a75.tar.bz2
egawk-af6f677758c6b873fb3130b34705e2a705270a75.zip
Merge branch 'feature/regex-to-api' into feature/andy
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext.c b/ext.c
index 10a42210..609b3b2b 100644
--- a/ext.c
+++ b/ext.c
@@ -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 */