aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenton <dentonposs@gmail.com>2018-07-05 12:47:36 -0500
committerGitHub <noreply@github.com>2018-07-05 12:47:36 -0500
commitbb0b767ba40d189b97ffe371ab063c5380609b0c (patch)
tree188f2d6b71ed920a424b5f153bc45c6f51f179f7
parent4e96a41b4ee6bbc920b7c5a5ec555d6d14e65b18 (diff)
pretend you didnt see this
-rw-r--r--hex_functions.cpp2
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);