From 26d5534320a56d8951487e111582133849dbf145 Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Tue, 12 Apr 2011 13:34:04 +0200 Subject: [PATCH] fixed typo --- preprocessor/ExprNode.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/preprocessor/ExprNode.cc b/preprocessor/ExprNode.cc index 5b1c9d4cc..8b007dd3a 100644 --- a/preprocessor/ExprNode.cc +++ b/preprocessor/ExprNode.cc @@ -1316,7 +1316,8 @@ UnaryOpNode::composeDerivatives(expr_t darg, int deriv_id) VariableNode *varg = dynamic_cast(arg); if (varg == NULL) { - cerr << "UnaryOpNode::writeOutput: STEADY_STATE() should only be used on standalone variables (like STEADY_STATE(y)) to be derivable w.r.t. parameters" << endl; + cerr << "UnaryOpNode::composeDerivatives: STEADY_STATE() should only be used on " + << "standalone variables (like STEADY_STATE(y)) to be derivable w.r.t. parameters" << endl; exit(EXIT_FAILURE); } if (datatree.symbol_table.getType(varg->symb_id) == eEndogenous)