summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-31 12:59:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-03-31 12:59:05 +0200
commit9329618eeec0aaa07b09197bec5e5bf266558d0f (patch)
treecb8b0dd2295e8750ab3ebd9c206e1849698c0d2b /avmedia
parent94418a9ede50a35ab19dbbec93e610b9de8c8057 (diff)
Spurious closing parenthesis
Change-Id: I0b723b758a4728816587a26d9b9b28cdc06f5dd1
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/vlc/vlcmanager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/avmedia/source/vlc/vlcmanager.cxx b/avmedia/source/vlc/vlcmanager.cxx
index cc9bc840cfec..06ad14d08aed 100644
--- a/avmedia/source/vlc/vlcmanager.cxx
+++ b/avmedia/source/vlc/vlcmanager.cxx
@@ -49,7 +49,7 @@ Manager::Manager( const uno::Reference< lang::XMultiServiceFactory >& rxMgr )
m_is_vlc_found = success;
if (m_is_vlc_found)
{
- mInstance.reset(new Instance( SAL_N_ELEMENTS(VLC_ARGS) ), VLC_ARGS ));
+ mInstance.reset(new Instance( SAL_N_ELEMENTS(VLC_ARGS), VLC_ARGS ));
//Check VLC version
std::vector<std::string> verComponents;
const std::string str(Common::Version());