X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FConsole%2FUtility.ct;fp=senf%2FUtils%2FConsole%2FUtility.ct;h=771e36d508a387689e90cff37ffa75faf74858b5;hb=1d058092bd771d52996416763b5d9cafadc2e087;hp=bd132fbce9c1d48bf15c0fa2e7f6f6d7d4b89a2b;hpb=411b898d78f6b51341b95448c9b73c0f8ad074aa;p=senf.git diff --git a/senf/Utils/Console/Utility.ct b/senf/Utils/Console/Utility.ct index bd132fb..771e36d 100644 --- a/senf/Utils/Console/Utility.ct +++ b/senf/Utils/Console/Utility.ct @@ -73,9 +73,9 @@ template prefix_ void senf::console::ReturnValueTraits< senf::console::ValueRange >:: format(type const & value, std::ostream & os) { - os << value.low; + os << senf::console::str(value.low); if (value.low != value.high) - os << ':' << value.high; + os << ':' << senf::console::str(value.high); } ///////////////////////////////ct.e////////////////////////////////////////