From 27416ca2c4d4f580f74037ea246b24ba26e80bfe Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 2 Dec 2012 10:14:38 +0200 Subject: [PATCH] libvlc: better error code if no modules are found --- src/libvlc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2