X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fstringcodec%2Fexcept.cpp;h=b4d07ece559706025677393ea019a9cce39799c0;hp=1e1393cf00e99486b46526c94257d9b6c72bcdc3;hb=42ff7c629b2aa7411963bdcc2259a06b1d1de6d3;hpb=eedad559456b8e62ed3b9bd9e8253e5f8bcc02d6 diff --git a/source/stringcodec/except.cpp b/source/stringcodec/except.cpp index 1e1393c..b4d07ec 100644 --- a/source/stringcodec/except.cpp +++ b/source/stringcodec/except.cpp @@ -22,7 +22,7 @@ string invalid_sequence::format_sequence(const string::const_iterator &begin, co { if(!result.empty()) result += ' '; - result += lexical_cast(static_cast(*i), Fmt().fill('0').width(2).hex().uppercase()); + result += lexical_cast(static_cast(*i), Fmt().fill('0').width(2).hex().uppercase()); } return result; }