summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-07-07 17:23:00 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-07-07 17:23:27 +0200
commit7d876e48cb0292d94e193ea7da2538e018f0e07c (patch)
tree66fed0d4796c77c6a2ab8b26555e40aac14921bd /sot
parent652556ec3e9218655a67b4c4de4e26fbe81855de (diff)
sot: fix loplugin:unnecessaryparen warning
Change-Id: Ia022f6cb1e9c91c9aa49025e54699a5c7718fc75
Diffstat (limited to 'sot')
-rw-r--r--sot/source/sdstor/storage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sot/source/sdstor/storage.cxx b/sot/source/sdstor/storage.cxx
index df3caff95a85..13e6c7d08ab4 100644
--- a/sot/source/sdstor/storage.cxx
+++ b/sot/source/sdstor/storage.cxx
@@ -291,7 +291,7 @@ void SotStorage::CreateStorage( bool bForceUCBStorage, StreamMode nMode )
if( !m_aName.isEmpty() )
{
// named storage
- if( ( ( nMode & ERASEMASK ) == ERASEMASK ) )
+ if( ( nMode & ERASEMASK ) == ERASEMASK )
::utl::UCBContentHelper::Kill( m_aName );
INetURLObject aObj( m_aName );