summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--idlc/source/scanner.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/idlc/source/scanner.ll b/idlc/source/scanner.ll
index 1fdbeab6f574..62ce2884f393 100644
--- a/idlc/source/scanner.ll
+++ b/idlc/source/scanner.ll
@@ -195,7 +195,8 @@ static double asciiToFloat(const sal_Char *s)
}
if (e > 0)
{
- for (k = 1; e > 0; k *= 10, e--) ;
+ for (k = 1; e > 0; k *= 10, e--)
+ ;
if (negexp)
d /= k;
else