]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/file.c
utf8_* -> vlc_* (sed roxxors)
[vlc] / modules / audio_output / file.c
index 18fd45c7a05698859e905a28e20f1946af282a77..d2641ecde726d0155bcc6cd008f491e84b4ece9a 100644 (file)
@@ -154,7 +154,7 @@ static int Open( vlc_object_t * p_this )
     if( !strcmp( psz_name, "-" ) )
         p_aout->output.p_sys->p_file = stdout;
     else
-        p_aout->output.p_sys->p_file = utf8_fopen( psz_name, "wb" );
+        p_aout->output.p_sys->p_file = vlc_fopen( psz_name, "wb" );
 
     free( psz_name );
     if ( p_aout->output.p_sys->p_file == NULL )