Change "union value" to dynamically allocate long strings.
[pspp-builds.git] / src / language / stats / freq.h
index 98af8a6f0483785c375783ed4c4ddea2706ab3d6..b06a36f6b2fb14f5fbc47f7f9db6d6d924dab893 100644 (file)
@@ -21,14 +21,14 @@ union value ;
 /* Frequency table entry. */
 struct freq
   {
-    const union value *value;  /* The value. */
+    const union value value;   /* The value. */
     double count;              /* The number of occurrences of the value. */
   };
 
 /* Non const version of frequency table entry. */
 struct freq_mutable
   {
-    union value *value;                /* The value. */
+    union value value;         /* The value. */
     double count;              /* The number of occurrences of the value. */
   };