Change how checking for missing values works.
[pspp] / src / ui / gui / psppire-data-store.c
index d9ae1418e2927585e486f6d19d24ee3628ddd805..2a3efe639522ea320a515914eeb3a734df4db6f6 100644 (file)
@@ -181,7 +181,7 @@ static char *
 unlabeled_value (PsppireDataStore *store, const struct variable *variable, const union value *val)
 {
   if (var_is_numeric (variable) &&
-      var_is_value_missing (variable, val, MV_SYSTEM))
+      var_is_value_missing (variable, val) == MV_SYSTEM)
     return g_strdup ("");
 
   const struct fmt_spec *fmt = var_get_print_format (variable);