From: RĂ©mi Denis-Courmont Date: Sun, 2 Dec 2012 08:14:38 +0000 (+0200) Subject: libvlc: better error code if no modules are found X-Git-Tag: 2.1.0-git~2102 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=27416ca2c4d4f580f74037ea246b24ba26e80bfe;p=vlc libvlc: better error code if no modules are found --- diff --git a/src/libvlc.c b/src/libvlc.c index 716f75218c..8e342f96c6 100644 --- a/src/libvlc.c +++ b/src/libvlc.c @@ -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."); module_EndBank (true); - return VLC_ENOITEM; + return VLC_ENOMOD; } #ifdef HAVE_DAEMON