Utils/Console: Add CharAsString utility
[senf.git] / senf / Utils / Format.cc
index 78d3e8d..6b6e172 100644 (file)
@@ -146,12 +146,14 @@ prefix_ std::string senf::format::detail::dumpintUnsigned(unsigned long long v,
     ss << ") (";
     for (int i (bytes-1); i>=0; --i) {
         char c ((v>>(8*i))&0xff);
-        ss << ((c>=32 && c<=127) ? c : '.');
+        ss << ((c>=32 && c<=126) ? c : '.');
     }
     ss << ')';
     return ss.str();
 }
 
+unsigned int senf::format::IndentHelper::static_level = 0;
+
 
 ///////////////////////////////cc.e////////////////////////////////////////
 #undef prefix_