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 | 9980a12c0bd068df7a295ba43768906cafa7fd0e (patch) | |
tree | e5a0e907b1c137825c3389b32e438e786f355ebc /io | |
parent | 2571d265fb4e59396e5601b8698776dc296cf16a (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 b4a325f0b..274084469 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; } |