]> git.sesse.net Git - vlc/commitdiff
Fix one warning for vlc_iconv() here (4th argument), but 2nd argument also issues...
authorJean-Paul Saman <jpsaman@videolan.org>
Wed, 16 May 2007 14:49:20 +0000 (14:49 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Wed, 16 May 2007 14:49:20 +0000 (14:49 +0000)
modules/demux/ts.c

index f29656e7e661e8fcd3573c54bc929a2a1d53fe36..6b1522df10525418147dd5989a88d560471dc1eb 100644 (file)
@@ -2553,7 +2553,8 @@ static inline char *FixUTF8( char *p )
 static char *EITConvertToUTF8( unsigned char *psz_instring, size_t i_length )
 {
     const char *psz_encoding;
-    unsigned char *psz_stringstart, *psz_outstring, *psz_tmp;
+    const unsigned char *psz_stringstart, *psz_outstring;
+    char *psz_tmp;
     char psz_encbuf[12];
     size_t i_in, i_out;
     vlc_iconv_t iconv_handle;