From: mtk Date: Tue, 29 Sep 2009 15:33:35 +0000 (+0000) Subject: removed spurious '%' X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=6cd09bf0b05c7b26aa57409b510311b235180528;p=senf.git removed spurious '%' git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1462 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/senf/Utils/Statistics.cc b/senf/Utils/Statistics.cc index a86f655..cc13424 100644 --- a/senf/Utils/Statistics.cc +++ b/senf/Utils/Statistics.cc @@ -96,7 +96,7 @@ std::string format_eng( float f) if( n >=3) sprintf( buf, " %3.2fe%+03d", f, n); else - sprintf( buf, " %3.2f%", f); + sprintf( buf, " %3.2f", f); } else if (f < 0) { int n = 0; @@ -107,7 +107,7 @@ std::string format_eng( float f) if( n >=3) sprintf( buf, " %3.2fe%+03d", f, n); else - sprintf( buf, " %3.2f%", f); + sprintf( buf, " %3.2f", f); } else{ sprintf( buf, " 0.00");