diff options
author | Erik Andersson <erik@packy.se> | 2016-11-22 23:55:17 +0100 |
---|---|---|
committer | Erik Andersson <erik@packy.se> | 2016-11-22 23:55:17 +0100 |
commit | ed374a8dbcdaaf273964293d2805bdd61b148022 (patch) | |
tree | 07d6174e10d55aa8c5270679c6ea4680d81a8a3b /src/misc_functions.cpp | |
parent | c45504fd136f5db2f7f20b8aa1aa7f186d9d9c59 (diff) | |
download | ocelot-ed374a8dbcdaaf273964293d2805bdd61b148022.zip ocelot-ed374a8dbcdaaf273964293d2805bdd61b148022.tar.gz ocelot-ed374a8dbcdaaf273964293d2805bdd61b148022.tar.bz2 |
Ocelot v0.8v0.8
Diffstat (limited to 'src/misc_functions.cpp')
-rw-r--r-- | src/misc_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc_functions.cpp b/src/misc_functions.cpp index 63f135b..022e6b2 100644 --- a/src/misc_functions.cpp +++ b/src/misc_functions.cpp @@ -40,7 +40,7 @@ std::string hex_decode(const std::string &in) { } else if (in[i] >= '0' && in[i] <= '9') { x = static_cast<unsigned char>((in[i]-48) << 4); } - + i++; if (in[i] >= 'a' && in[i] <= 'f') { x += static_cast<unsigned char>(in[i]-87); |