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

libvlc: better error code if no modules are found

parent 45755c4d
...@@ -231,7 +231,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -231,7 +231,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
{ {
msg_Err( p_libvlc, "No plugins found! Check your VLC installation."); msg_Err( p_libvlc, "No plugins found! Check your VLC installation.");
module_EndBank (true); module_EndBank (true);
return VLC_ENOITEM; return VLC_ENOMOD;
} }
#ifdef HAVE_DAEMON #ifdef HAVE_DAEMON
......
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