X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FFormat.cc;h=6b6e172b357006b03c89b32ed01c271231e99ef3;hb=ea5f02fb88dfab3932368bbafdc863b8ad585cc1;hp=78d3e8d941a6a3aa263c31d9e6baf71735da3b9b;hpb=c9d8ba8de7801af854581eb9e175d7b4f19ece3d;p=senf.git diff --git a/senf/Utils/Format.cc b/senf/Utils/Format.cc index 78d3e8d..6b6e172 100644 --- a/senf/Utils/Format.cc +++ b/senf/Utils/Format.cc @@ -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_