Delete tab_create()'s unused third parameter.
[pspp-builds.git] / src / language / stats / wilcoxon.c
index f145a0c4c8f27c118692a4a37e301efcf011a2a9..26d14ab8f3b803559c01696e03bf2cdd632b89ca 100644 (file)
@@ -225,7 +225,7 @@ show_ranks_box (const struct wilcoxon_state *ws,
   const struct variable *wv = dict_get_weight (dict);
   const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : & F_8_0;
 
-  struct tab_table *table = tab_create (5, 1 + 4 * t2s->n_pairs, 0);
+  struct tab_table *table = tab_create (5, 1 + 4 * t2s->n_pairs);
 
   tab_dim (table, tab_natural_dimensions, NULL, NULL);
 
@@ -306,7 +306,7 @@ show_tests_box (const struct wilcoxon_state *ws,
                )
 {
   size_t i;
-  struct tab_table *table = tab_create (1 + t2s->n_pairs, exact ? 5 : 3, 0);
+  struct tab_table *table = tab_create (1 + t2s->n_pairs, exact ? 5 : 3);
 
   tab_dim (table, tab_natural_dimensions, NULL, NULL);