summaryrefslogtreecommitdiffstats
path: root/Tests/JCTest/TestTime.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/JCTest/TestTime.cxx')
-rw-r--r--Tests/JCTest/TestTime.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/JCTest/TestTime.cxx b/Tests/JCTest/TestTime.cxx
index 5768ab5..b98e1d3 100644
--- a/Tests/JCTest/TestTime.cxx
+++ b/Tests/JCTest/TestTime.cxx
@@ -4,9 +4,8 @@
int main(int ac, char** av)
{
float d = 10.0;
- for(int i =0; i < atoi(av[1]); i++)
- {
+ for (int i = 0; i < atoi(av[1]); i++) {
d *= .2;
- }
+ }
printf("%f", d);
}