output: Make groups contain their subitems, and get rid of spv_item.
[pspp] / src / output / msglog.c
index f91c7e61176bece6167d5c0ab9a983df916388f2..7fe6555f19dc4acc8f0d16ff3812392f5d9fbbd9 100644 (file)
@@ -108,8 +108,7 @@ msglog_submit (struct output_driver *driver, const struct output_item *item)
 
 static const struct output_driver_class msglog_class =
   {
-    "msglog",
-    msglog_destroy,
-    msglog_submit,
-    NULL
+    .name = "msglog",
+    .destroy = msglog_destroy,
+    .submit = msglog_submit,
   };