diff --git a/Common/3dParty/libvlc/test/main.cpp b/Common/3dParty/libvlc/test/main.cpp index fe3a0aab0e..1773527fce 100644 --- a/Common/3dParty/libvlc/test/main.cpp +++ b/Common/3dParty/libvlc/test/main.cpp @@ -3,12 +3,12 @@ int main(int argc, char* argv[]) { - QApplication app(argc, argv); + QApplication app(argc, argv); - // set lowest verbosity level - CVlcInstance::setVerbosityLevel(0); - Mwindow player; - player.show(); + // set non-zero verbosity level + CVlcInstance::setVerbosityLevel(1); + Mwindow player; + player.show(); - return app.exec(); + return app.exec(); }