aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.c b/src/Utils.c
index 7ea6e90..dfb3a8c 100644
--- a/src/Utils.c
+++ b/src/Utils.c
@@ -841,7 +841,7 @@ static void SetOutputVar (int vindex, const char *optstring, void *arg)
{
int unchunked = -1;
if (type == CCTK_VARIABLE_CHAR &&
- nelems >= sizeof ("no")-1 && nelems <= sizeof ("false")-1)
+ nelems >= (int) sizeof ("no")-1 && nelems <= (int) sizeof ("false")-1)
{
char value[sizeof ("false")];
Util_TableGetString (table, sizeof (value), value, "out_unchunked");