diff options
| author | Tijl Coosemans <tijl@FreeBSD.org> | 2015-04-15 09:09:20 +0000 |
|---|---|---|
| committer | Tijl Coosemans <tijl@FreeBSD.org> | 2015-04-15 09:09:20 +0000 |
| commit | 1243a98e38a54709f670e748070f4051de2ad10f (patch) | |
| tree | 87498bf268bfd011fdf8bf597761671de1049b22 /lib/libiconv_modules/UTF7 | |
| parent | 3de3815469d22c460231e0bbc0256e75fcd9de58 (diff) | |
Notes
Diffstat (limited to 'lib/libiconv_modules/UTF7')
| -rw-r--r-- | lib/libiconv_modules/UTF7/citrus_utf7.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libiconv_modules/UTF7/citrus_utf7.c b/lib/libiconv_modules/UTF7/citrus_utf7.c index 53f4f771f506..ce74cfe28b36 100644 --- a/lib/libiconv_modules/UTF7/citrus_utf7.c +++ b/lib/libiconv_modules/UTF7/citrus_utf7.c @@ -151,11 +151,11 @@ static const char spaces[] = " \t\r\n"; static int _citrus_UTF7_mbtoutf16(_UTF7EncodingInfo * __restrict ei, - uint16_t * __restrict u16, const char ** __restrict s, size_t n, + uint16_t * __restrict u16, char ** __restrict s, size_t n, _UTF7State * __restrict psenc, size_t * __restrict nresult) { _UTF7State sv; - const char *s0; + char *s0; int done, i, len; s0 = *s; @@ -244,7 +244,7 @@ ilseq: static int _citrus_UTF7_mbrtowc_priv(_UTF7EncodingInfo * __restrict ei, - wchar_t * __restrict pwc, const char ** __restrict s, size_t n, + wchar_t * __restrict pwc, char ** __restrict s, size_t n, _UTF7State * __restrict psenc, size_t * __restrict nresult) { uint32_t u32; |
