aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2014-03-16 04:05:03 +0000
committerrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2014-03-16 04:05:03 +0000
commit299d07ce6ab709aef911ad0ef4bac2ecb75128e9 (patch)
tree69ebcfef94de10a9e00b80fa2f37db78bac99dfc
parentf1f9e12f1e8f47d231db406202fb0327039ac3d7 (diff)
fix missing quoation marks at EOL in error messages
pointed out by Barry Wardell. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@220 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
-rw-r--r--src/Registration.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Registration.c b/src/Registration.c
index 221bbfc..aa137f5 100644
--- a/src/Registration.c
+++ b/src/Registration.c
@@ -3025,8 +3025,8 @@ CCTK_INT MoL_RegisterConstrainedComplexArray(CCTK_INT ConstrainedIndex)
CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
"You tried to register more than %d constrained complex "
"variables. Since this should be the total number of "
- "Cactus variables, this looks like a bug. You tried to
- register '%s'. The registered variables are: %s.",
+ "Cactus variables, this looks like a bug. You tried to"
+ "register '%s'. The registered variables are: %s.",
MoLMaxNumRegisteredVariables, constrainedvarname,
registeredvars);
free(registeredvars); /* NOTREACHED */
@@ -3149,8 +3149,8 @@ CCTK_INT MoL_RegisterSaveAndRestoreComplexArray(CCTK_INT SandRIndex)
CCTK_VWarn(0, __LINE__, __FILE__, CCTK_THORNSTRING,
"You tried to register more than %d save and restore complex "
"variables. Since this should be the total number of "
- "Cactus variables, this looks like a bug. You tried to
- register '%s'. The " "registered variables are: %s.",
+ "Cactus variables, this looks like a bug. You tried to"
+ "register '%s'. The " "registered variables are: %s.",
MoLMaxNumRegisteredVariables, saveandrestorevarname,
registeredvars);
free(registeredvars); /* NOTREACHED */