aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2000-05-10 12:11:11 +0000
committerallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2000-05-10 12:11:11 +0000
commit08b8046b1d6a9560f30702718bbd7894c24d7905 (patch)
tree0013fa4f5f174435dea9d4a0bcb3643dc802e883
parent1e81d091960f8b18ee549f76cbda5b25be8ea386 (diff)
New macros for calling C from fortran
CCTK_mkdir -> CCTK_CreateDirectory git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@56 b589c3ab-70e8-4b4d-a09f-cba2dd200880
-rw-r--r--src/GHExtension.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GHExtension.c b/src/GHExtension.c
index 6975cea..cc8d04f 100644
--- a/src/GHExtension.c
+++ b/src/GHExtension.c
@@ -72,7 +72,7 @@ int IOBasic_InitGH (cGH *GH)
/* create the output dir */
if (CCTK_MyProc (GH) == 0)
{
- i = CCTK_mkdir (myGH->outdirScalar);
+ i = CCTK_CreateDirectory (myGH->outdirScalar,0755);
if (i < 0)
CCTK_VWarn (1, __LINE__, __FILE__, CCTK_THORNSTRING,
"Problem creating Scalar output directory '%s'", myGH->outdirScalar);