aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
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 /interpret.h
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 'interpret.h')
-rw-r--r--interpret.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/interpret.h b/interpret.h
index ec6a3dda..6c5b432e 100644
--- a/interpret.h
+++ b/interpret.h
@@ -966,7 +966,7 @@ arrayfor:
case Op_ext_builtin:
{
size_t arg_count = pc->expr_count;
- awk_ext_func_t *f = pc[1].c_func;
+ awk_ext_func_t *f = pc[1].c_function;
size_t min_req = f->min_required_args;
size_t max_expect = f->max_expected_args;
awk_value_t result;
@@ -1119,7 +1119,7 @@ match_re:
npc[0].expr_count = arg_count; /* actual argument count */
npc[1] = pc[1];
npc[1].func_name = fname; /* name of the builtin */
- npc[1].c_func = bc->c_func;
+ npc[1].c_function = bc->c_function;
ni = npc;
JUMPTO(ni);
} else
@@ -1158,7 +1158,7 @@ match_re:
pc->extfunc = bc->extfunc;
pc->expr_count = arg_count; /* actual argument count */
(pc + 1)->func_name = fname; /* name of the builtin */
- (pc + 1)->c_func = bc->c_func; /* min and max args */
+ (pc + 1)->c_function = bc->c_function; /* min and max args */
ni = pc;
JUMPTO(ni);
}