aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2005-01-29 17:11:00 +0000
committerschnetter <schnetter@6a38eb6e-646e-4a02-a296-d141613ad6c4>2005-01-29 17:11:00 +0000
commitea8abd38c0c1db211c71fc7b2424259a98b3e797 (patch)
treeb21357c3b82e76460d49fc815529e5de924d3594
parent180b84ae53d6e13fd222f7861c0685b9f436fc2a (diff)
Use CCTK_BYTE instead of CCTK_CHAR
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@279 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--src/ScalarBoundary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ScalarBoundary.c b/src/ScalarBoundary.c
index cf76e42..c7fda74 100644
--- a/src/ScalarBoundary.c
+++ b/src/ScalarBoundary.c
@@ -1161,8 +1161,8 @@ static int ApplyBndScalar (const cGH *GH,
/* FIXME: can't pass an empty preprocessor constant as a macro argument
on some systems (e.g. MacOS X), so we have to define it outside */
#define NUMBER_PART
- case CCTK_VARIABLE_CHAR:
- SCALAR_BOUNDARY (CCTK_CHAR, CCTK_CHAR); break;
+ case CCTK_VARIABLE_BYTE:
+ SCALAR_BOUNDARY (CCTK_BYTE, CCTK_BYTE); break;
case CCTK_VARIABLE_INT:
SCALAR_BOUNDARY (CCTK_INT, CCTK_INT); break;