summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-19 02:13:32 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-19 02:13:32 +0000
commitc8a507cd89048e9b31ceba6050681ed3a0b1082b (patch)
treebe9e7d9de84c81f54c9f6854de0c5aa86f3250ad
parent7217dd5a40b01bad898a07c88b9f81d5ea823936 (diff)
downloadATCD-c8a507cd89048e9b31ceba6050681ed3a0b1082b.tar.gz
Should divided by MULTIPLY_FACTOR, not 10
-rw-r--r--performance-tests/Misc/childbirth_time.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/performance-tests/Misc/childbirth_time.cpp b/performance-tests/Misc/childbirth_time.cpp
index 840b4d2fb7f..14977c276e5 100644
--- a/performance-tests/Misc/childbirth_time.cpp
+++ b/performance-tests/Misc/childbirth_time.cpp
@@ -393,7 +393,7 @@ main (int argc, char* argv[])
if (time > 0)
ACE_DEBUG ((LM_DEBUG,
"Average performance of %d iterations of %s: %.0f usec\n",
- iteration * 10, profile_name, time * 1e6));
+ iteration * MULTIPLY_FACTOR, profile_name, time * 1e6));
}
return 0;
}