aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2013-03-16 01:43:52 +0000
committerrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2013-03-16 01:43:52 +0000
commit37ab0aea90ba8b6305d6a3efbd7915cdba34a57c (patch)
treeca3dae3de1aca533968a7fe643e071232810c451 /src
parentc2758f321926451671bc1b623e55cf0cb88952a2 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/Registration.c4
1 files 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. "