summaryrefslogtreecommitdiff
path: root/src/util/Misc.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-21 11:19:30 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-21 11:19:30 +0000
commit2a822c2bf4488a33fff9c5d5e017556de0815530 (patch)
tree1e160d537c8c864004edb6c3130bff9f98446851 /src/util/Misc.c
parenta76728d5a6c6dd92ca9c75a1d2553bd5f069e108 (diff)
Renamed LOGICAL in ccl files to BOOLEAN
LOGICAL will still work for now Hopefully this will remove the confusion in Fortran with "logicals" having integer values git-svn-id: http://svn.cactuscode.org/flesh/trunk@977 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/util/Misc.c')
-rw-r--r--src/util/Misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/Misc.c b/src/util/Misc.c
index 22716b3e..bde592a5 100644
--- a/src/util/Misc.c
+++ b/src/util/Misc.c
@@ -879,11 +879,11 @@ void FMODIFIER FORTRAN_NAME(CCTK_PrintString)(char **arg1)
}
/*@@
- @routine CCTK_SetLogical
+ @routine CCTK_SetBoolean
@date Thu Jan 21 10:35:11 1999
@author Tom Goodale
@desc
- Sets the value of a logical to true or false according to
+ Sets the value of a boolean to true or false according to
the value of the value string.
@enddesc
@calls
@@ -893,7 +893,7 @@ void FMODIFIER FORTRAN_NAME(CCTK_PrintString)(char **arg1)
@endhistory
@@*/
-int CCTK_SetLogical(CCTK_INT *data, const char *value)
+int CCTK_SetBoolean(CCTK_INT *data, const char *value)
{
int retval = 1;
@@ -909,7 +909,7 @@ int CCTK_SetLogical(CCTK_INT *data, const char *value)
}
else
{
- CCTK_Warn(1,__LINE__,__FILE__,"Cactus","Logical not set in CCTK_SetLogical");
+ CCTK_Warn(1,__LINE__,__FILE__,"Cactus","Boolean not set in CCTK_SetBoolean");
retval = -1;
}