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

Fix return value after items hand-over via MPRIS (fixes 15947)

parent 3c5a8d07
...@@ -340,7 +340,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -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 */ /* we unreference the connection when we've finished with it */
dbus_connection_unref( conn ); dbus_connection_unref( conn );
exit( 1 ); exit( 0 );
} }
#undef MPRIS_APPEND #undef MPRIS_APPEND
#undef MPRIS_BUS_NAME #undef MPRIS_BUS_NAME
......
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