output: Fix warnings about unused function arguments in ODT driver.
authorBen Pfaff <blp@gnu.org>
Wed, 5 Aug 2009 02:53:34 +0000 (19:53 -0700)
committerBen Pfaff <blp@gnu.org>
Wed, 5 Aug 2009 02:53:34 +0000 (19:53 -0700)
src/output/odt.c

index 5c0bee8ea92b53efa28e160eeb7f568375096973..3bbb216da44e973c0dcec5456acc29e21c68bc3e 100644 (file)
@@ -432,17 +432,17 @@ odt_close_driver (struct outp_driver *this)
 }
 
 static void
-odt_open_page (struct outp_driver *this)
+odt_open_page (struct outp_driver *this UNUSED)
 {
 }
 
 static void
-odt_close_page (struct outp_driver *this)
+odt_close_page (struct outp_driver *this UNUSED)
 {
 }
 
 static void
-odt_output_chart (struct outp_driver *this, const struct chart *chart)
+odt_output_chart (struct outp_driver *this UNUSED, const struct chart *chart UNUSED)
 {
  printf ("%s\n", __FUNCTION__);
 }