summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
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: */