output: Add support for captions.
[pspp] / src / output / ascii.c
index 562cd72ea76b75df68b0d352bf39c6bf6f28e90e..0b6d659fa8c7317f31329ced1b60bd25abdb98a6 100644 (file)
@@ -464,7 +464,8 @@ ascii_output_text (struct ascii_driver *a, const char *text)
 {
   struct table_item *table_item;
 
-  table_item = table_item_create (table_from_string (TAB_LEFT, text), NULL);
+  table_item = table_item_create (table_from_string (TAB_LEFT, text),
+                                  NULL, NULL);
   ascii_output_table_item (a, table_item);
   table_item_unref (table_item);
 }