X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FFormat.cc;h=6b6e172b357006b03c89b32ed01c271231e99ef3;hb=1d41d158d2b9c45b5c900320aae4dea1c9091261;hp=e824b39c7949e4ad0b4e8db438c5fe13db7c079e;hpb=71b18ab7945f6adc60d1717e1f3d2b95c8d199f1;p=senf.git diff --git a/senf/Utils/Format.cc b/senf/Utils/Format.cc index e824b39..6b6e172 100644 --- a/senf/Utils/Format.cc +++ b/senf/Utils/Format.cc @@ -146,7 +146,7 @@ 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();