X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FFormat.cc;h=6b6e172b357006b03c89b32ed01c271231e99ef3;hb=90f51da2398de98c2c217045f791ca7813730f48;hp=e824b39c7949e4ad0b4e8db438c5fe13db7c079e;hpb=9c0d069987191bce78e13cdba410c34d34e736c2;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();