diff --git a/src/SubModel.cc b/src/SubModel.cc
index 20829a6122cf3995849de336d770a33cd7db07a5..f4f89d2a4bdce8bc6144f392a62eff4a42d2fde2 100644
--- a/src/SubModel.cc
+++ b/src/SubModel.cc
@@ -504,8 +504,7 @@ VarModelTable::writeOutput(const string &basename, ostream &output) const
           int eqn, lag, lhs_symb_id;
           tie (eqn, lag, lhs_symb_id) = it.first;
           int colidx = (int) distance(lhs.begin(), find(lhs.begin(), lhs.end(), lhs_symb_id));
-          ar_output << "    ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag
-                    << ") = ";
+          ar_output << "    ar(" << eqn + 1 << ", " << colidx + 1 << ", " << lag << ") = ";
           it.second->writeOutput(ar_output, ExprNodeOutputType::matlabDynamicModel);
           ar_output << ";" << endl;
         }