diff options
author | Kevin Hunter <hunteke@earlham.edu> | 2011-02-11 13:44:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-11 13:44:07 +0000 |
commit | 52205f3d026ab5517fd76ed1740f7f1c0ee28958 (patch) | |
tree | 438662c81811dae20c4a3e9d9194ddb2a8d5c3e6 | |
parent | 6f4e1dbf06ab27afedb6aa03a34c6335ee2d45f6 (diff) |
cppcheck: post- to pre- *crement change
-rw-r--r-- | crashrep/source/win32/soreport.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp index 29b87481c..16f435649 100644 --- a/crashrep/source/win32/soreport.cpp +++ b/crashrep/source/win32/soreport.cpp @@ -1833,9 +1833,7 @@ bool WriteChecksumFile( FILE *fchksum, const boost::unordered_map< string, strin boost::unordered_map< string, string >::const_iterator iter; - for ( iter = rLibraries.begin(); - iter != rLibraries.end(); - iter++ ) + for ( iter = rLibraries.begin(); iter != rLibraries.end(); ++iter ) { sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; sal_uInt32 nBytesProcessed = calc_md5_checksum( |