X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fcontrol%2Fcore.c;h=657edada627910e1eab988a38640654993b106dd;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=6c189ce86b412507bcf27c15863b8d5f13d9623a;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/src/control/core.c b/src/control/core.c index 6c189ce86b..657edada62 100644 --- a/src/control/core.c +++ b/src/control/core.c @@ -89,7 +89,7 @@ libvlc_instance_t * libvlc_new( int argc, char **argv, if( !p_new ) RAISENULL( "Out of memory" ); /** \todo Look for interface settings. If we don't have any, add -I dummy */ - /* Because we probably don't want a GUI by default */ + /* Because we probably don't want a GUI by default */ if( libvlc_InternalInit( p_libvlc_int, argc, argv ) ) RAISENULL( "VLC initialization failed" ); @@ -100,7 +100,7 @@ libvlc_instance_t * libvlc_new( int argc, char **argv, p_new->p_callback_list = NULL; vlc_mutex_init(p_libvlc_int, &p_new->instance_lock); vlc_mutex_init(p_libvlc_int, &p_new->event_callback_lock); - + libvlc_event_init(p_new, p_e); return p_new;