diff options
Diffstat (limited to 'src/dom/util/digest.cpp')
| -rw-r--r-- | src/dom/util/digest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dom/util/digest.cpp b/src/dom/util/digest.cpp index 282979775..2baed4860 100644 --- a/src/dom/util/digest.cpp +++ b/src/dom/util/digest.cpp @@ -1,4 +1,4 @@ -/** +/* * Secure Hashing Tool * * * Authors: @@ -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]); |
