summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-25 09:45:15 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 10:09:29 +0200
commite64edc463553634c616abf93138279c7ca6f1a32 (patch)
treeea9de9b403d10103563022ae24b08c13eaa93e7b /sax
parented104d2d671ab08c712f6840a96f01632dcd1d15 (diff)
cid#1371333 Misused comma operator
Change-Id: I5288cfb4e86bbcf07df1c74cdacdd5f0e7bf03fb
Diffstat (limited to 'sax')
-rw-r--r--sax/source/fastparser/fastparser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index 24811fd1bc97..f35aceae7f9b 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -925,11 +925,11 @@ void FastSaxParserImpl::produce( bool bForceFlush )
{
Entity& rEntity = getEntity();
if (bForceFlush ||
- rEntity.mnProducedEventsSize == rEntity.mnEventListSize)
+ rEntity.mnProducedEventsSize == Entity::mnEventListSize)
{
osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
- while (rEntity.maPendingEvents.size() >= rEntity.mnEventHighWater)
+ while (rEntity.maPendingEvents.size() >= Entity::mnEventHighWater)
{ // pause parsing for a bit
aGuard.clear(); // unlock
rEntity.maProduceResume.wait();