diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:35:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:35:03 +0000 |
commit | 28a8964dbd3c0b2783bd2474ce4ad48bfeb2e34b (patch) | |
tree | 40981ce00c182465016c9338f79ff565b7023a02 /io | |
parent | d2ad54d2a53a1c02c1e172016a4f1d6f76569783 (diff) |
fix typo
Diffstat (limited to 'io')
-rw-r--r-- | io/source/stm/omark.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |