Rename compare_values, hash_values with "_short" suffix.
[pspp-builds.git] / src / language / stats / freq.c
index afad84ee4bcdc6f0a93c83a6f71c71494cb03895..952857479aed75f9f7e27e37b919fa383b70b0fb 100644 (file)
@@ -30,7 +30,7 @@ compare_freq ( const void *_f1, const void *_f2, const void *_var)
   const struct freq *f2 = _f2;
   const struct variable *var = _var;
 
-  return  compare_values (f1->value, f2->value, var );
+  return  compare_values_short (f1->value, f2->value, var );
 }
 
 unsigned int
@@ -38,7 +38,7 @@ hash_freq (const void *_f, const void *var)
 {
   const struct freq *f = _f;
 
-  return hash_value (f->value, var);
+  return hash_value_short (f->value, var);
 }
 
 /* Free function to be used on FR whose value parameter has been copied */