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

Framebuffer OSD: path from VLC config, need utf8_open

parent 52270396
......@@ -31,6 +31,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_charset.h>
#include <errno.h>
#include <stdlib.h> /* free() */
......@@ -1059,7 +1060,7 @@ static int OpenDisplay( intf_thread_t *p_intf )
return VLC_EGENERIC;
}
p_sys->i_fd = open( psz_device, O_RDWR );
p_sys->i_fd = utf8_open( psz_device, O_RDWR );
if( p_sys->i_fd == -1 )
{
msg_Err( p_intf, "cannot open %s (%m)", psz_device );
......
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