diff --git a/ks_constants_8h_source.html b/ks_constants_8h_source.html
index 56a4f8b..b285606 100644
--- a/ks_constants_8h_source.html
+++ b/ks_constants_8h_source.html
@@ -175,12 +175,12 @@
- 158 unsigned int uvalue{
static_cast<unsigned int>(value)};
-
-
+
+ 159 unsigned int uvalue{
static_cast<unsigned int>(value)}, pos{8};
+
- 163 int nibble{uvalue & 0xf};
+ 163 unsigned int nibble{uvalue & 0xf};
164 buffer[--pos] = (nibble < 10) ? (
'0' + nibble) : (
'a' + (nibble - 10));