summaryrefslogtreecommitdiffstats
path: root/crypto/rc2
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-02-28 20:08:46 +0000
committerNils Larsch <nils@openssl.org>2006-02-28 20:08:46 +0000
commite2217e7ed57e90c7c9b5205c35c9842214581674 (patch)
tree5372004b6abb40fad15380b2e1efafb4aa877694 /crypto/rc2
parent51b75ea7ef7c41f039a453a020be4b3c6929702f (diff)
fix "#ifndef HZ" statement
PR: 1287
Diffstat (limited to 'crypto/rc2')
-rw-r--r--crypto/rc2/rc2speed.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rc2/rc2speed.c b/crypto/rc2/rc2speed.c
index b16e6e2ed1..85cf6f65bf 100644
--- a/crypto/rc2/rc2speed.c
+++ b/crypto/rc2/rc2speed.c
@@ -105,10 +105,10 @@ OPENSSL_DECLARE_EXIT
#ifndef HZ
#ifndef CLK_TCK
#define HZ 100.0
-#endif
-#else /* CLK_TCK */
+#else /* CLK_TCK */
#define HZ ((double)CLK_TCK)
-#endif
+#endif /* CLK_TCK */
+#endif /* HZ */
#define BUFSIZE ((long)1024)
long run=0;