From bb0b767ba40d189b97ffe371ab063c5380609b0c Mon Sep 17 00:00:00 2001 From: Denton Date: Thu, 5 Jul 2018 12:47:36 -0500 Subject: [PATCH] pretend you didnt see this --- hex_functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hex_functions.cpp b/hex_functions.cpp index c503af6..e07a7b0 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);