Delete tab_create()'s unused third parameter.
[pspp-builds.git] / src / language / data-io / print.c
index f7a3d152c58bf513081f38a9809b97afa2537a90..897c10cc158c8858a6c539bb54275bb53e9c0aec 100644 (file)
@@ -395,7 +395,7 @@ dump_table (struct print_trns *trns, const struct file_handle *fh)
   int row;
 
   spec_cnt = ll_count (&trns->specs);
-  t = tab_create (4, spec_cnt + 1, 0);
+  t = tab_create (4, spec_cnt + 1);
   tab_columns (t, TAB_COL_DOWN);
   tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 3, spec_cnt);
   tab_hline (t, TAL_2, 0, 3, 1);