]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/ifo.c
Don't re-invent uint8_t - remove byte_t
[vlc] / modules / demux / playlist / ifo.c
index dfec1a9a59c51a72bf01c5523b715b47a4f6c7a0..5c959d63b5557fb48986e387e219c315fa54e431 100644 (file)
@@ -58,7 +58,7 @@ int E_(Import_IFO)( vlc_object_t *p_this )
         && !strcasecmp( psz_file + strlen( "VTS_00_0" ) , ".IFO" ) ) ) )
     {
         int i_peek;
-        const byte_t *p_peek;
+        const uint8_t *p_peek;
         i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
 
         if( i_peek != 8 || memcmp( p_peek, "DVDVIDEO", 8 ) )