From: David Levine Date: Tue, 18 Feb 2014 13:54:37 +0000 (-0600) Subject: Silenced warnings when built without iconv. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/bf58e45a34dcf8300098abff38c4e7393152f365?ds=sidebyside;hp=f661735e1002823d3b969ddc7f8903e8940d0553 Silenced warnings when built without iconv. --- diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c index 13090561..5a6f125e 100644 --- a/uip/mhshowsbr.c +++ b/uip/mhshowsbr.c @@ -1173,6 +1173,9 @@ convert_content_charset (CT ct, char **file) { return NOTOK; } } +#else /* ! HAVE_ICONV */ + NMH_UNUSED (ct); + NMH_UNUSED (file); #endif /* ! HAVE_ICONV */ return OK;