[vlc-commits] Fix return value after items hand-over via MPRIS (fixes 15947)
Rémi Denis-Courmont
git at videolan.org
Sat Nov 21 19:47:33 CET 2015
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Nov 21 20:46:38 2015 +0200| [e1aaa1e07b97f17603a4873d7ca4829b25f84239] | committer: Rémi Denis-Courmont
Fix return value after items hand-over via MPRIS (fixes 15947)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e1aaa1e07b97f17603a4873d7ca4829b25f84239
---
src/libvlc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index 34824da..a7d9a69 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -340,7 +340,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
}
/* we unreference the connection when we've finished with it */
dbus_connection_unref( conn );
- exit( 1 );
+ exit( 0 );
}
#undef MPRIS_APPEND
#undef MPRIS_BUS_NAME
More information about the vlc-commits
mailing list