Fix uninitialized warning

svn path=/trunk/; revision=50387
This commit is contained in:
Timo Kreuzer 2011-01-15 11:18:01 +00:00
parent ce53947b29
commit 97b0bc9cd2

View file

@ -173,6 +173,7 @@ format_float(
// FIXME: TODO
case _T('f'):
default:
/* Shift the decimal point and round */
fpval2 = round(sign * fpval * pow(10., precision));
break;