diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2011-10-23 10:07:29 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2011-10-23 10:07:29 +0000 |
| commit | 1555ec455e3e23a4687f661d9389c21d11e806f7 (patch) | |
| tree | 2ea621b8ef045e84b46cb76b59374d87bd27b1be /src/dom/util/digest.cpp | |
| parent | Warning cleanup (diff) | |
| download | inkscape-1555ec455e3e23a4687f661d9389c21d11e806f7.tar.gz inkscape-1555ec455e3e23a4687f661d9389c21d11e806f7.zip | |
cppcheck
(bzr r10695)
Diffstat (limited to 'src/dom/util/digest.cpp')
| -rw-r--r-- | src/dom/util/digest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dom/util/digest.cpp b/src/dom/util/digest.cpp index 282979775..f416f5522 100644 --- a/src/dom/util/digest.cpp +++ b/src/dom/util/digest.cpp @@ -58,7 +58,7 @@ static std::string toHex(const std::vector<unsigned char> &bytes) { std::string str; std::vector<unsigned char>::const_iterator iter; - for (iter = bytes.begin() ; iter != bytes.end() ; iter++) + for (iter = bytes.begin() ; iter != bytes.end() ; ++iter) { unsigned char ch = *iter; str.push_back(hexDigits[(ch>>4) & 0x0f]); |
