Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/meantools_eval.c')
-rw-r--r--src/meantools_eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/meantools_eval.c b/src/meantools_eval.c
index 4f166cd..027d18d 100644
--- a/src/meantools_eval.c
+++ b/src/meantools_eval.c
@@ -1,5 +1,5 @@
/*
-Copyright 2015 Ian Jauslin
+Copyright 2015-2022 Ian Jauslin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -163,12 +163,12 @@ int tool_eval(Str_Array str_args, Meantools_Options opts){
// evaluate
if(mpfr_flag==0){
- evaleq(&rccs, flow_equation);
+ evaleq(rccs, rccs, flow_equation);
RCC_print(rccs);
free_RCC(rccs);
}
else{
- evaleq_mpfr(&rccs_mpfr, flow_equation);
+ evaleq_mpfr(rccs_mpfr, rccs_mpfr, flow_equation);
RCC_mpfr_print(rccs_mpfr);
free_RCC_mpfr(rccs_mpfr);
}