Commit 1c58e8b5 authored by Gildas Bazin's avatar Gildas Bazin

* src/libvlc.c: compilation fix.

parent 59783ce0
...@@ -1896,7 +1896,7 @@ char *FromLocale( const char *locale ) ...@@ -1896,7 +1896,7 @@ char *FromLocale( const char *locale )
if( !vlc_current_charset( &psz_charset ) ) if( !vlc_current_charset( &psz_charset ) )
{ {
char *iptr = (ICONV_CONST char *)locale, *output, *optr; char *iptr = (char *)locale, *output, *optr;
size_t inb, outb; size_t inb, outb;
/* cannot fail (unless vlc_current_charset sucks) */ /* cannot fail (unless vlc_current_charset sucks) */
...@@ -1936,7 +1936,7 @@ char *ToLocale( const char *utf8 ) ...@@ -1936,7 +1936,7 @@ char *ToLocale( const char *utf8 )
if( !vlc_current_charset( &psz_charset ) ) if( !vlc_current_charset( &psz_charset ) )
{ {
char *iptr = (ICONV_CONST char *)utf8, *output, *optr; char *iptr = (char *)utf8, *output, *optr;
size_t inb, outb; size_t inb, outb;
/* cannot fail (unless vlc_current_charset sucks) */ /* cannot fail (unless vlc_current_charset sucks) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment