From 28a8964dbd3c0b2783bd2474ce4ad48bfeb2e34b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 6 Jan 2011 14:35:03 +0000 Subject: [PATCH] fix typo --- io/source/stm/omark.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx index cbbfa0fff1c6..62b4c34c848b 100644 --- a/io/source/stm/omark.cxx +++ b/io/source/stm/omark.cxx @@ -939,7 +939,7 @@ void OMarkableInputStream::checkMarksAndFlush() // find the smallest mark sal_Int32 nNextFound = m_nCurrentPos; - for( ii = m_mapMarks.begin() ; ii != m_mapMarks.end() ; ii ) { + for( ii = m_mapMarks.begin() ; ii != m_mapMarks.end() ; ++ii ) { if( (*ii).second <= nNextFound ) { nNextFound = (*ii).second; }