From d3feb1895e6a233b23b92fb154f6f5fea415ea88 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 4 Aug 2009 19:53:34 -0700 Subject: [PATCH] output: Fix warnings about unused function arguments in ODT driver. --- src/output/odt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/output/odt.c b/src/output/odt.c index 5c0bee8e..3bbb216d 100644 --- a/src/output/odt.c +++ b/src/output/odt.c @@ -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__); } -- 2.30.2