aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-08-21 21:51:22 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-08-21 21:51:22 +0300
commitb33eb7a4bf226ce8d9f568927f875afe290d9b06 (patch)
tree694b8a499ed9c3a13dffa38ec968673d49ac3389 /ext.c
parentb723f14ac83c52de73771a97b0b84d97cc640fd0 (diff)
parent79bdf495760451af2b7f7ef209d5f4c82e9929fa (diff)
downloadegawk-b33eb7a4bf226ce8d9f568927f875afe290d9b06.tar.gz
egawk-b33eb7a4bf226ce8d9f568927f875afe290d9b06.tar.bz2
egawk-b33eb7a4bf226ce8d9f568927f875afe290d9b06.zip
Merge branch 'master' into feature/fix-comments
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 ce4b247b..027df697 100644
--- a/ext.c
+++ b/ext.c
@@ -135,7 +135,7 @@ make_builtin(const awk_ext_func_t *funcinfo)
b = bcalloc(Op_symbol, 1, 0);
b->extfunc = funcinfo->function;
- b->c_func = (awk_ext_func_t *) funcinfo;
+ b->c_function = (awk_ext_func_t *) funcinfo;
/* NB: extension sub must return something */