Commit 33b0e8df authored by Rémi Duraffort's avatar Rémi Duraffort

libvlcpp: fix compilation.

parent 2669219a
......@@ -22,14 +22,14 @@
*****************************************************************************/
#include "libvlc.hpp"
#include "exception.hpp"
using namespace libvlc;
libVLC::libVLC( int i_argc, const char *const *argv )
{
Exception ex;
m_instance = libvlc_new( i_argc, argv, &ex.ex);
m_instance = libvlc_new( i_argc, argv);
if(!m_instance)
throw libvlc_errmsg();
}
libVLC::~libVLC()
......
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