diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-21 21:51:22 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-21 21:51:22 +0300 |
commit | b33eb7a4bf226ce8d9f568927f875afe290d9b06 (patch) | |
tree | 694b8a499ed9c3a13dffa38ec968673d49ac3389 /ext.c | |
parent | b723f14ac83c52de73771a97b0b84d97cc640fd0 (diff) | |
parent | 79bdf495760451af2b7f7ef209d5f4c82e9929fa (diff) | |
download | egawk-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |