From 37ab0aea90ba8b6305d6a3efbd7915cdba34a57c Mon Sep 17 00:00:00 2001 From: rhaas Date: Sat, 16 Mar 2013 01:43:52 +0000 Subject: fix incorrect error message introduced in r191 the message affected evolved slow variables where it would output the currently registered fast evolved variables instead of the slow ones. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@194 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b --- src/Registration.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Registration.c b/src/Registration.c index 6fe1bfc..2ea7639 100644 --- a/src/Registration.c +++ b/src/Registration.c @@ -1315,9 +1315,9 @@ CCTK_INT MoL_RegisterEvolvedRealSlow(CCTK_INT EvolvedIndex, CCTK_INT RHSIndexSlo { const char *evolvedvarname = CCTK_VarName(EvolvedIndex); char *registeredvars = - VarListToString(EvolvedVariableIndex, MoLNumEvolvedVariables); + VarListToString(EvolvedVariableIndex, MoLNumEvolvedVariablesSlow); CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING, - "You have tried to register more evolved " + "You have tried to register more slow evolved " "variables than the accumulator parameter " "MoL_Num_Evolved_Variables allows. Check that " "you are accumulating onto this parameter correctly. " -- cgit v1.2.3