summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-14 11:20:10 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-14 11:20:10 +0000
commit2a4a453dd7fd13f6b07604b3dfce1818567bb253 (patch)
tree70dc34c7fe240fe1912e7d44ccc97625b9f6fcde /src
parentff9bda189bd5095855f01bedd53fefe77b19d429 (diff)
Lowering the warning level for a string not being a group, since
this is used to test if it is a group git-svn-id: http://svn.cactuscode.org/flesh/trunk@908 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/main/Groups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/Groups.c b/src/main/Groups.c
index 06d4a79e..79124933 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -104,7 +104,7 @@ int CCTK_GroupIndex(const char *fullgroupname)
char *message;
message = (char *)malloc( (100+strlen(fullgroupname))*sizeof(char) );
sprintf(message,"No group found with the name %s",fullgroupname);
- CCTK_WARN(2,message);
+ CCTK_WARN(6,message);
if (message) free(message);
retval = -1;
}