summaryrefslogtreecommitdiffstats
path: root/xmlsecurity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-29 10:10:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-29 12:00:42 +0100
commit368f806aaa75fb80790026677e2400580536ed7a (patch)
tree8b0a7e13a15e036a90a128c7789eaf06f4026dd4 /xmlsecurity
parentUpdated core (diff)
downloadcore-368f806aaa75fb80790026677e2400580536ed7a.tar.gz
core-368f806aaa75fb80790026677e2400580536ed7a.zip
loplugin:unnecessaryparen (clang-cl)
Change-Id: I3a2b7ed3fdef3b77c0a052b10f88918aa616779e Reviewed-on: https://gerrit.libreoffice.org/45469 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx b/xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx
index 4f0edd4df43a..56560660eb99 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/akmngr.cxx
@@ -151,7 +151,7 @@ xmlSecMSCryptoAppliedKeysMngrAdoptKeyStore(
return (-1) ;
}
- return (0) ;
+ return 0 ;
}
int
@@ -186,7 +186,7 @@ xmlSecMSCryptoAppliedKeysMngrAdoptTrustedStore(
return (-1) ;
}
- return (0) ;
+ return 0 ;
}
int
@@ -221,7 +221,7 @@ xmlSecMSCryptoAppliedKeysMngrAdoptUntrustedStore(
return (-1) ;
}
- return (0) ;
+ return 0 ;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */