summaryrefslogtreecommitdiffstats
path: root/src/misc_functions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc_functions.cpp')
-rw-r--r--src/misc_functions.cpp2
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);