aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-07-12 20:58:36 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-07-12 20:58:36 +0300
commit4687b886c1181e9e9a0c27bb95714c4a414a7a78 (patch)
tree0c21164abfa6199f79b386104aac3938cd09df4f /interpret.h
parent8f54bef8fb8293b376d17eb872be3d64ed4125dc (diff)
downloadegawk-4687b886c1181e9e9a0c27bb95714c4a414a7a78.tar.gz
egawk-4687b886c1181e9e9a0c27bb95714c4a414a7a78.tar.bz2
egawk-4687b886c1181e9e9a0c27bb95714c4a414a7a78.zip
Fix testext test for MPFR.
Diffstat (limited to 'interpret.h')
-rw-r--r--interpret.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/interpret.h b/interpret.h
index 4de778e7..efbf9b23 100644
--- a/interpret.h
+++ b/interpret.h
@@ -1037,7 +1037,8 @@ arrayfor:
(unsigned long) max_expect);
PUSH_CODE(pc);
- r = awk_value_to_node(pc->extfunc(arg_count, & result, f));
+ awk_value_t *ef_ret = pc->extfunc(arg_count, & result, f);
+ r = awk_value_to_node(ef_ret);
(void) POP_CODE();
while (arg_count-- > 0) {
t1 = POP();