Reform string library.
[pspp-builds.git] / src / language / stats / crosstabs.q
index d7828bd5a19b2bdce28eb4935b809832d4cdc73e..ee7299200fb21d3656aaa7adfbb2cfaecd64f357 100644 (file)
@@ -1661,7 +1661,7 @@ static void
 table_value_missing (struct tab_table *table, int c, int r, unsigned char opt,
                     const union value *v, const struct variable *var)
 {
-  struct fixed_string s;
+  struct substring s;
 
   const char *label = val_labs_find (var->val_labs, *v);
   if (label) 
@@ -1708,7 +1708,7 @@ format_cell_entry (struct tab_table *table, int c, int r, double value,
 {
   const struct fmt_spec f = {FMT_F, 10, 1};
   union value v;
-  struct fixed_string s;
+  struct substring s;
   
   s.length = 10;
   s.string = tab_alloc (table, 16);