From 0c0ea326ce453c4449f9188af0a563be19d8d938 Mon Sep 17 00:00:00 2001 From: Johannes Pfeifer Date: Sun, 1 Mar 2015 14:22:45 +0100 Subject: [PATCH] Fix wrong initialization of trend_coeff in preprocessor/ComputingTasks.cc --- ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index 9fd1e816..cffa5862 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -1014,7 +1014,7 @@ ObservationTrendsStatement::ObservationTrendsStatement(const trend_elements_t &t void ObservationTrendsStatement::writeOutput(ostream &output, const string &basename, bool minimal_workspace) const { - output << "options_.trend_coeff_ = {};" << endl; + output << "options_.trend_coeff = {};" << endl; trend_elements_t::const_iterator it;