summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-24 13:40:26 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-24 13:40:26 +0000
commitbc515f1c607930a119f649f22b3afcdf5e5201e5 (patch)
treecc521ebb9ebd1819b3ada1adc6afd1c7d91086f4 /src/main
parentf689942ff14f877f319c84a70cdf85b498df6dfa (diff)
Changed DecomposeGroupName to DecomposeName
git-svn-id: http://svn.cactuscode.org/flesh/trunk@418 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main')
-rw-r--r--src/main/Groups.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/Groups.c b/src/main/Groups.c
index f77e7101..58928491 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -697,11 +697,11 @@ char *CCTK_GetVarName(int varnum)
/*@@
- @routine CCTK_DecomposeGroupName
+ @routine CCTK_DecomposeName
@date Tue Feb 9 15:39:14 1999
@author Tom Goodale
@desc
- Decomposes a group name of the form imp::group
+ Decomposes a group name of the form imp::name
@enddesc
@calls
@calledby
@@ -710,7 +710,7 @@ char *CCTK_GetVarName(int varnum)
@endhistory
@@*/
-int CCTK_DecomposeGroupName(const char *fullname, char **implementation, char **name)
+int CCTK_DecomposeName(const char *fullname, char **implementation, char **name)
{
return CCTK_SplitString(implementation, name, fullname, "::");
}