Skip to content
Snippets Groups Projects
Commit ec6f331b authored by Romain Vimont's avatar Romain Vimont Committed by Hugo Beauzée-Luyssen
Browse files

mtp: fix vlc_once() usage

Commit 47a00338 added the wrapper
function, but did not call it.
parent aaff6519
No related branches found
No related tags found
1 merge request!934mtp: fix vlc_once() usage
Pipeline #161794 passed with stage
in 14 minutes and 35 seconds
......@@ -101,7 +101,7 @@ static int Open( vlc_object_t *p_this )
static vlc_once_t mtp_init_once = VLC_STATIC_ONCE;
vlc_once(&mtp_init_once, LIBMTP_Init, NULL);
vlc_once(&mtp_init_once, vlc_libmtp_init, NULL);
if (vlc_clone (&p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment