summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-24 17:03:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-24 17:03:49 +0100
commit392e5dfee9947d07d093c8045c9a6e7b078e2721 (patch)
tree406449a20c5a7e2dc730f2ee03520dc8275fd610 /writerfilter
parent67d11883740da4ef242d0002acde83f67d4b327a (diff)
loplugin:unnecessaryparen
Change-Id: I5a1fa919b7fe8c91ac886a796426b5671573dbb6
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/rtftok/rtftokenizer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/rtftok/rtftokenizer.cxx b/writerfilter/source/rtftok/rtftokenizer.cxx
index b2acac10b2db..8a2f53ae1eda 100644
--- a/writerfilter/source/rtftok/rtftokenizer.cxx
+++ b/writerfilter/source/rtftok/rtftokenizer.cxx
@@ -79,7 +79,7 @@ RTFError RTFTokenizer::resolveParse()
m_xStatusIndicator->setValue(nLastPos = nCurrentPos);
}
- while ((Strm().ReadChar(ch), !Strm().eof()))
+ while (Strm().ReadChar(ch), !Strm().eof())
{
//SAL_INFO("writerfilter", OSL_THIS_FUNC << ": parsing character '" << ch << "'");