From: Ben Pfaff Date: Wed, 5 Aug 2009 02:53:34 +0000 (-0700) Subject: output: Fix warnings about unused function arguments in ODT driver. X-Git-Tag: sid-i386-build98~17 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3feb1895e6a233b23b92fb154f6f5fea415ea88;p=pspp-builds.git output: Fix warnings about unused function arguments in ODT driver. --- 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__); }