aboutsummaryrefslogtreecommitdiff
path: root/src/Server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Server.c')
-rw-r--r--src/Server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Server.c b/src/Server.c
index ad44ba9..bd8b8a6 100644
--- a/src/Server.c
+++ b/src/Server.c
@@ -524,8 +524,8 @@ static double evaluator(const char *expression, void *data)
switch(vartype)
{
- case CCTK_VARIABLE_CHAR :
- retval = *((CCTK_CHAR *)pointer);
+ case CCTK_VARIABLE_BYTE :
+ retval = *((CCTK_BYTE *)pointer);
break;
case CCTK_VARIABLE_INT :
retval = *((CCTK_INT *)pointer);