fix "#ifndef HZ" statement
authorNils Larsch <nils@openssl.org>
Tue, 28 Feb 2006 20:15:56 +0000 (20:15 +0000)
committerNils Larsch <nils@openssl.org>
Tue, 28 Feb 2006 20:15:56 +0000 (20:15 +0000)
PR: 1287

crypto/rc2/rc2speed.c

index 47d34b444e5b4efe0d439ba329bb47b67fd07c82..4d0e1242eaf11c269bdaf0364dba01f0e24a142f 100644 (file)
@@ -102,10 +102,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;