First step in making struct variable opaque: the boring mechanical
[pspp-builds.git] / src / data / missing-values.c
index 928e80c92a561b41291aaeb2a4ec47e4be708f17..8976abc16eb41d1e345ed89e988b3ea84fd4ec08 100644 (file)
@@ -437,5 +437,5 @@ bool
 mv_is_value_system_missing (const struct missing_values *mv,
                             const union value *v)
 {
-  return mv->width == 0 ? v->f == SYSMIS : false;
+  return mv->width == 0 && v->f == SYSMIS;
 }