summaryrefslogtreecommitdiff
path: root/src/xutf8/lcUniConv/iso8859_10.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_10.h
parent5a7a70b8958b726b92e76b4aedeba4a04b85085f (diff)
Remove compiler warnings about unused parameters (issue #307) - cont'd
Diffstat (limited to 'src/xutf8/lcUniConv/iso8859_10.h')
-rw-r--r--src/xutf8/lcUniConv/iso8859_10.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xutf8/lcUniConv/iso8859_10.h b/src/xutf8/lcUniConv/iso8859_10.h
index 94e1c6985..591fdfc85 100644
--- a/src/xutf8/lcUniConv/iso8859_10.h
+++ b/src/xutf8/lcUniConv/iso8859_10.h
@@ -74,6 +74,7 @@ static const unsigned char iso8859_10_page00[224] = {
static int
iso8859_10_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
+ (void)conv; (void)n;
unsigned char c = 0;
if (wc < 0x00a0) {
*r = wc;