diff options
| -rw-r--r-- | hex_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hex_functions.cpp b/hex_functions.cpp index c503af6b..e07a7b08 100644 --- a/hex_functions.cpp +++ b/hex_functions.cpp @@ -58,7 +58,7 @@ namespace omni std::stringstream stream; stream << std::setfill ('0') << std::setw(sizeof(char)*2) - << std::hex << your_int; + << std::hex << input; std::string result(stream.str()); std::transform(str.begin(), str.end(), str.begin(), ::toupper); |
