Skip to content

Commit

Permalink
libvlcpp: fix compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoire committed Feb 2, 2010
1 parent 2669219 commit 33b0e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/libvlcpp/src/libvlc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 33b0e8d

Please sign in to comment.