Author: tkreuzer
Date: Sat Jan 15 11:18:01 2011
New Revision: 50387
URL:
http://svn.reactos.org/svn/reactos?rev=50387&view=rev
Log:
[CRT]
Fix uninitialized warning
Modified:
trunk/reactos/lib/sdk/crt/printf/streamout.c
Modified: trunk/reactos/lib/sdk/crt/printf/streamout.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/streamo…
==============================================================================
--- trunk/reactos/lib/sdk/crt/printf/streamout.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/printf/streamout.c [iso-8859-1] Sat Jan 15 11:18:01 2011
@@ -173,6 +173,7 @@
// FIXME: TODO
case _T('f'):
+ default:
/* Shift the decimal point and round */
fpval2 = round(sign * fpval * pow(10., precision));
break;