Commit 8e5b3661 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix typo

parent 979e839a
...@@ -179,7 +179,7 @@ static int Open ( vlc_object_t *p_this ) ...@@ -179,7 +179,7 @@ static int Open ( vlc_object_t *p_this )
psz_vobname = strdup( p_demux->psz_path ); psz_vobname = strdup( p_demux->psz_path );
i_len = strlen( psz_vobname ); i_len = strlen( psz_vobname );
memcpy( psz_vobname + i_len - 4, ".sub" ); memcpy( psz_vobname + i_len - 4, ".sub", 4 );
/* open file */ /* open file */
p_sys->p_vobsub_file = utf8_fopen( psz_vobname, "rb" ); p_sys->p_vobsub_file = utf8_fopen( psz_vobname, "rb" );
......
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