summaryrefslogtreecommitdiff
path: root/src/main/ActiveThorns.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-20 16:45:21 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-08-20 16:45:21 +0000
commitcb0d91f21052a01417243322346149265c673b21 (patch)
tree4e2595d55f125cf63be0dcd7cbcd4a152a9a9417 /src/main/ActiveThorns.c
parent4f346e11fabaa50afb557788a29463ffdbbedb88 (diff)
Changed error message slightly for missing implementations in ActiveThorns
list git-svn-id: http://svn.cactuscode.org/flesh/trunk@2980 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ActiveThorns.c')
-rw-r--r--src/main/ActiveThorns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/ActiveThorns.c b/src/main/ActiveThorns.c
index a1e08144..ce27875b 100644
--- a/src/main/ActiveThorns.c
+++ b/src/main/ActiveThorns.c
@@ -1112,8 +1112,8 @@ int CCTKi_ActivateThorns(const char *activethornlist)
*/
while(imp2)
{
- printf("Error: required implementation %s not requested\n", imp2);
- printf(" Add a thorn providing this implementation to ActiveThorns "
+ printf("Error: Required implementation %s was not requested\n", imp2);
+ printf(" Add a thorn providing this implementation to the ActiveThorns "
"parameter.\n");
n_errors++;
/* Give some more help */
@@ -1121,7 +1121,7 @@ int CCTKi_ActivateThorns(const char *activethornlist)
{
impthornlist = CCTK_ImpThornList(imp2);
- printf(" This implementation is provided by compiled thorns:\n");
+ printf(" For example, this implementation is provided by compiled thorns:\n");
printf(" ");
SKTreeTraverseInorder(impthornlist, JustPrintThornName, NULL);
printf("\n");