diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:35:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-14 08:35:54 +0200 |
commit | 303380beef4ab88433006d4aeeb65ea1ee7f3990 (patch) | |
tree | c830c12f398dc2580f14d77c5dd48a7233ffcf03 /avmedia/source/win/player.cxx | |
parent | c856ae17aff5db258eb16713f56fce9f28400d47 (diff) |
loplugin:unnecessaryparen (clang-cl)
Change-Id: I5335d639cddb07ad442d1e09f2d2ac694c38ccaf
Diffstat (limited to 'avmedia/source/win/player.cxx')
-rw-r--r-- | avmedia/source/win/player.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx index a7c3e6bd766d..c0579c225dde 100644 --- a/avmedia/source/win/player.cxx +++ b/avmedia/source/win/player.cxx @@ -403,7 +403,7 @@ sal_Int16 SAL_CALL Player::getVolumeDB( ) { ::osl::MutexGuard aGuard(m_aMutex); - return( static_cast< sal_Int16 >( mnUnmutedVolume / 100 ) ); + return static_cast< sal_Int16 >( mnUnmutedVolume / 100 ); } |