Skip to content

Commit d30c2c4

Browse files
committed
Merge branch 'mh/w-unused-fix'
Buildfix. * mh/w-unused-fix: utf8.h: squelch unused-parameter warnings with NO_ICONV
2 parents 12841c4 + e03b2a2 commit d30c2c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

utf8.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ char *reencode_string_len(const char *in, size_t insz,
3333
const char *in_encoding,
3434
size_t *outsz);
3535
#else
36-
static inline char *reencode_string_len(const char *a, size_t b,
37-
const char *c, const char *d, size_t *e)
36+
static inline char *reencode_string_len(const char *a UNUSED, size_t b UNUSED,
37+
const char *c UNUSED,
38+
const char *d UNUSED, size_t *e)
3839
{ if (e) *e = 0; return NULL; }
3940
#endif
4041

0 commit comments

Comments
 (0)