Skip to content

Commit 1d69bf1

Browse files
committed
Fix compiler warning
This cast is already done for all other _aliases, but this one has apparently been missed so far.
1 parent ebf35cc commit 1d69bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const mbfl_encoding mbfl_encoding_2022jp_kddi = {
4848
mbfl_no_encoding_2022jp_kddi,
4949
"ISO-2022-JP-MOBILE#KDDI",
5050
"ISO-2022-JP",
51-
&mbfl_encoding_2022jp_kddi_aliases,
51+
(const char *(*)[])&mbfl_encoding_2022jp_kddi_aliases,
5252
NULL,
5353
MBFL_ENCTYPE_MBCS | MBFL_ENCTYPE_SHFTCODE | MBFL_ENCTYPE_GL_UNSAFE,
5454
&vtbl_2022jp_kddi_wchar,

0 commit comments

Comments
 (0)