Correct format string for unsigned char (#154)
The correct format string for unsigned char is %u.
coverage_maxout is adapted to match the correct output.
diff --git a/scripts/coverage_maxout.cpp b/scripts/coverage_maxout.cpp
index 95edcaa..a417091 100644
--- a/scripts/coverage_maxout.cpp
+++ b/scripts/coverage_maxout.cpp
@@ -95,8 +95,8 @@
// trigger code path for assert string of a non-existent assert type
oss << assertString(static_cast<assertType::Enum>(3));
str += oss.str().c_str();
- CHECK(str == "omgomgomgaaaNULLtrue00.5f0.50.199991d111111true0.50.50.1cc"
- "111111omgomgomgaaaNULLtrue00.5f0.50.199991d111111");
+ CHECK(str == "omgomgomgaaaNULLtrue00.5f0.50.199991111111true0.50.50.1cc"
+ "111111omgomgomgaaaNULLtrue00.5f0.50.199991111111");
// trigger code path for rawMemoryToString
bool isThereAnything = str.size() > 0u;
bool len_is_zero = detail::rawMemoryToString(isThereAnything).size() == 0u;