From 44cee441e5fe051e5423ed6d4e2f1735e658718c Mon Sep 17 00:00:00 2001
From: Johannes Pfeifer <jpfeifer@gmx.de>
Date: Sat, 14 May 2016 11:33:33 +0200
Subject: [PATCH] Fix preprocessor renaming error introduced in
 b486ae4964ea534e70982487b1d7c11f732d950b

---
 ComputingTasks.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ComputingTasks.cc b/ComputingTasks.cc
index fd3be6a5..16cfde02 100644
--- a/ComputingTasks.cc
+++ b/ComputingTasks.cc
@@ -1132,7 +1132,7 @@ OsrStatement::writeOutput(ostream &output, const string &basename, bool minimal_
 
   options_list.writeOutput(output);
   symbol_list.writeOutput("var_list_", output);
-  output << "oo_.osr = osr(var_list_,osr_params_,M_.osr.variable_indices,M_.osr.variable_weights);" << endl;
+  output << "oo_.osr = osr(var_list_,M_.osr.param_names,M_.osr.variable_indices,M_.osr.variable_weights);" << endl;
 }
 
 OptimWeightsStatement::OptimWeightsStatement(const var_weights_t &var_weights_arg,
-- 
GitLab