summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-22 08:38:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-22 08:38:48 +0200
commit186eda28fccccfbcd9ed918b2cf7f3d7bd294575 (patch)
treef128cef5625d3dc173f0e50cada1e553db4ce933 /sal
parenta2736303fea5ad2305ca8d38b90f5a21a8ab6a67 (diff)
loplugin:unnecessaryparen (clang-cl)
Change-Id: I61b006051e708636f0bba83b16de36f4571b8da7
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/interlck.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/interlck.cxx b/sal/osl/w32/interlck.cxx
index 3866062d75c2..b9ecf6d78eef 100644
--- a/sal/osl/w32/interlck.cxx
+++ b/sal/osl/w32/interlck.cxx
@@ -23,12 +23,12 @@
oslInterlockedCount SAL_CALL osl_incrementInterlockedCount(oslInterlockedCount* pCount)
{
- return (InterlockedIncrement(pCount));
+ return InterlockedIncrement(pCount);
}
oslInterlockedCount SAL_CALL osl_decrementInterlockedCount(oslInterlockedCount* pCount)
{
- return (InterlockedDecrement(pCount));
+ return InterlockedDecrement(pCount);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */