First step in making struct variable opaque: the boring mechanical
[pspp-builds.git] / src / data / category.c
index cfde533116d9337665548163b81320e04edade0f..21506ed8b5d0af64b2d2dc0e538776d9db27a78e 100644 (file)
@@ -92,7 +92,7 @@ cat_value_find (const struct variable *v, const union value *val)
     {
       candidate = v->obs_vals->vals + i;
       assert (candidate != NULL);
-      if (!compare_values (candidate, val, v->width))
+      if (!compare_values (candidate, val, var_get_width (v)))
        {
          return i;
        }
@@ -108,7 +108,7 @@ cat_value_update (struct variable *v, const union value *val)
 {
   struct cat_vals *cv;
 
-  if (v->type == ALPHA)
+  if (var_is_alpha (v))
     {
       assert (val != NULL);
       assert (v != NULL);