aboutsummaryrefslogtreecommitdiff
path: root/src/Write.c
diff options
context:
space:
mode:
authorschnetter <schnetter@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2005-01-29 18:11:53 +0000
committerschnetter <schnetter@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2005-01-29 18:11:53 +0000
commitf98fa73353a56af879ad76e787096ba87ea3be3b (patch)
treedcc856eed2595f1f69753758162df50f22f2b738 /src/Write.c
parent7dcb763e7c6cfe4df1549dca78d9ccfaee851ccd (diff)
Use CCTK_BYTE instead of CCTK_CHAR.
Store CCTK_BYTE as UINT8 instead of CHAR. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@334 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/Write.c')
-rw-r--r--src/Write.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Write.c b/src/Write.c
index d06c743..232a4f4 100644
--- a/src/Write.c
+++ b/src/Write.c
@@ -130,7 +130,7 @@ int IOFlexIO_Write (const cGH *GH, int vindex, const char *alias)
buffer[0] = 0;
CCTK_ParameterFilename (sizeof (buffer), buffer);
FLEXIO_ERROR (IOwriteAttribute (file->iofile, "parameter file",
- FLEXIO_CHAR,
+ CHAR,
strlen (buffer) + 1, buffer));
}
if (CCTK_Equals (out_fileinfo, "creation date") ||
@@ -142,7 +142,7 @@ int IOFlexIO_Write (const cGH *GH, int vindex, const char *alias)
buffer[len-1] = ' ';
Util_CurrentTime (sizeof (buffer) - len, buffer + len);
FLEXIO_ERROR (IOwriteAttribute (file->iofile, "creation date",
- FLEXIO_CHAR,
+ CHAR,
strlen (buffer) + 1, buffer));
}
}