Delete tab_create()'s unused third parameter.
[pspp-builds.git] / src / language / stats / sign.c
index 07a2499e9f70ab2b850a8d7a7db1727d1b5a4bf5..d5970c6ff0a61297803374c92755762cdca1f6d0 100644 (file)
@@ -52,7 +52,7 @@ output_frequency_table (const struct two_sample_test *t2s,
                        const struct dictionary *dict)
 {
   int i;
-  struct tab_table *table = tab_create (3, 1 + 4 * t2s->n_pairs, 0);
+  struct tab_table *table = tab_create (3, 1 + 4 * t2s->n_pairs);
 
   const struct variable *wv = dict_get_weight (dict);
   const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : & F_8_0;
@@ -108,7 +108,7 @@ output_statistics_table (const struct two_sample_test *t2s,
                         const struct sign_test_params *param)
 {
   int i;
-  struct tab_table *table = tab_create (1 + t2s->n_pairs, 4, 0);
+  struct tab_table *table = tab_create (1 + t2s->n_pairs, 4);
 
   tab_dim (table, tab_natural_dimensions, NULL, NULL);