From e64edc463553634c616abf93138279c7ca6f1a32 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Aug 2016 09:45:15 +0200 Subject: cid#1371333 Misused comma operator Change-Id: I5288cfb4e86bbcf07df1c74cdacdd5f0e7bf03fb --- sax/source/fastparser/fastparser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sax/source') 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(); -- cgit