Merge branch 'master' into output
[pspp-builds.git] / src / language / stats / binomial.c
index 67e378bbc81451d84c34641d76c4fbb930f2bb69..bc87a94da3316b0c0cf0b99c0035092a7d93a8cb 100644 (file)
@@ -187,7 +187,7 @@ binomial_execute (const struct dataset *ds,
       const struct fmt_spec *wfmt = wvar ?
        var_get_print_format (wvar) : & F_8_0;
 
-      struct tab_table *table = tab_create (7, ost->n_vars * 3 + 1, 0);
+      struct tab_table *table = tab_create (7, ost->n_vars * 3 + 1);
 
       tab_dim (table, tab_natural_dimensions, NULL, NULL);
 
@@ -261,9 +261,9 @@ binomial_execute (const struct dataset *ds,
       tab_text (table,  4, 0,  TAB_CENTER, _("Observed Prop."));
       tab_text (table,  5, 0,  TAB_CENTER, _("Test Prop."));
 
-      tab_text (table,  6, 0,  TAB_CENTER | TAT_PRINTF,
-                _("Exact Sig. (%d-tailed)"),
-                bst->p == 0.5 ? 2: 1);
+      tab_text_format (table,  6, 0,  TAB_CENTER,
+                       _("Exact Sig. (%d-tailed)"),
+                       bst->p == 0.5 ? 2 : 1);
 
       tab_vline (table, TAL_2, 2, 0, tab_nr (table) -1);
       tab_submit (table);