summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-05 15:31:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-05 15:31:11 +0200
commit8977d7e3cae3cdd119478c112322b1643cb42230 (patch)
tree78b3f51cf84874ce3a34b8ae961db4325d77be75 /tools
parent777fbce9a3fb6924b9481a05130838cb5ffe2bb0 (diff)
loplugin:unnecessaryparen
Change-Id: I051e25366300d9ca48ba30825198d78ff67a4bc1
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/point.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/point.cxx b/tools/source/generic/point.cxx
index 7feaef6a2083..6d4dc2e1e3ec 100644
--- a/tools/source/generic/point.cxx
+++ b/tools/source/generic/point.cxx
@@ -30,7 +30,7 @@ void Point::RotateAround( long& rX, long& rY,
if ( (nOrientation >= 0) && !(nOrientation % 900) )
{
- if ( (nOrientation >= 3600) )
+ if ( nOrientation >= 3600 )
nOrientation %= 3600;
if ( nOrientation )