Skip to content
Snippets Groups Projects
Commit 952d118d authored by Christophe Mutricy's avatar Christophe Mutricy
Browse files

Be more verbose about the failure if we return a non-null exit code

parent ff90a8aa
No related branches found
No related tags found
No related merge requests found
......@@ -131,6 +131,9 @@ int main( int i_argc, const char *ppsz_argv[] )
libvlc_release (vlc);
}
i_ret = libvlc_exception_raised (&ex);
if( i_ret )
fprintf( stderr, "%s\n", libvlc_exception_get_message( &ex));
libvlc_exception_clear (&ex);
for (int i = 0; i < i_argc; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment