0024059: Eliminate compiler warning C4701 in MSVC++ with warning level 4
[occt.git] / src / Interface / Interface_FloatWriter.cxx
index afba0c0..6d57b9b 100755 (executable)
@@ -104,7 +104,7 @@ Standard_Integer Interface_FloatWriter::Convert (const Standard_Real val,
 //    Valeur flottante, expurgee de "0000" qui trainent et de "E+00"
   const Standard_Integer anMasSize = 5; // change 6 to 5: index 5 is not used below
   char lxp[anMasSize], *pText; 
-  int i0, j0 = 0;
+  int i0 = 0, j0 = 0;
 
   for (Standard_Integer i = 0; i < anMasSize; ++i)
     lxp[i] = '\0';