diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 15:02:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 21:06:21 +0100 |
commit | 2eb0cadf0395c60198e36307222de3dd1e7729a6 (patch) | |
tree | 13de18915f50783714a90545bcae7480ddcfc978 /extensions | |
parent | c056f4ade7efec94d2cdc19c184486d834638df2 (diff) |
loplugin:unnecessaryparen (clang-cl)
Change-Id: I5452235287fd5986de25ee542edd57bf1abded52
Reviewed-on: https://gerrit.libreoffice.org/45338
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/activex/so_activex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/activex/so_activex.cxx b/extensions/source/activex/so_activex.cxx index 2b59692ed804..e5df921505fb 100644 --- a/extensions/source/activex/so_activex.cxx +++ b/extensions/source/activex/so_activex.cxx @@ -737,7 +737,7 @@ STDAPI DllRegisterServer() HMODULE aCurModule = GetModuleHandleW( bX64 ? X64_LIB_NAME : X32_LIB_NAME ); DWORD nLibNameLen = sal::static_int_cast<DWORD>( - wcslen((bX64) ? X64_LIB_NAME : X32_LIB_NAME)); + wcslen(bX64 ? X64_LIB_NAME : X32_LIB_NAME)); if( aCurModule ) { |