summaryrefslogtreecommitdiff
path: root/src/xutf8/lcUniConv/iso8859_9.h
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-12-09 11:40:43 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2021-12-09 11:40:55 +0100
commit08e59770aa2be8e3aa91c0593e91f5d19f007bc3 (patch)
tree093f51fb85bf469c5532c6aefbd05a5da1dfda1c /src/xutf8/lcUniConv/iso8859_9.h
parent5a7a70b8958b726b92e76b4aedeba4a04b85085f (diff)
Remove compiler warnings about unused parameters (issue #307) - cont'd
Diffstat (limited to 'src/xutf8/lcUniConv/iso8859_9.h')
-rw-r--r--src/xutf8/lcUniConv/iso8859_9.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xutf8/lcUniConv/iso8859_9.h b/src/xutf8/lcUniConv/iso8859_9.h
index 0986c2292..e244307e3 100644
--- a/src/xutf8/lcUniConv/iso8859_9.h
+++ b/src/xutf8/lcUniConv/iso8859_9.h
@@ -53,6 +53,7 @@ static const unsigned char iso8859_9_page01[72] = {
static int
iso8859_9_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
+ (void)conv; (void)n;
unsigned char c = 0;
if (wc < 0x00d0) {
*r = wc;