X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Foutput%2Frender-test.c;h=8ce0697910537194d450a09809ef73a2fd3079e9;hb=a74ac710e3cd2b6a52fd763ab31ce68e83f21dfe;hp=d051200c3cadba4f1f4c00a157755694701e45eb;hpb=d3fef25674baf4f4e25502f257c680b5090535c6;p=pspp diff --git a/tests/output/render-test.c b/tests/output/render-test.c index d051200c3c..8ce0697910 100644 --- a/tests/output/render-test.c +++ b/tests/output/render-test.c @@ -115,7 +115,7 @@ main (int argc, char **argv) table = tables[n_tables - 1]; if (transpose) table = table_transpose (table); - table_item_submit (table_item_create (table, NULL)); + table_item_submit (table_item_create (table, NULL, NULL)); } else draw (input); @@ -475,7 +475,7 @@ read_table (FILE *stream, struct table **tables, size_t n_tables) error (1, 0, "unexpected subtable modifier \"%c\"", *text); } tab_subtable (tab, c, r, c + cs - 1, r + rs - 1, opt, - table_item_create (table, NULL)); + table_item_create (table, NULL, NULL)); } else { @@ -488,7 +488,7 @@ read_table (FILE *stream, struct table **tables, size_t n_tables) tab_joint_text (tab, c, r, c + cs - 1, r + rs - 1, opt, content); else - tab_footnote (tab, c, r, content); + tab_footnote (tab, c, r, "%s", content); } }