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

crypto/rc2/rc2speed.c

index b16e6e2ed1d50c24840e389cfd140738a20065b0..85cf6f65bf15bb62d84ac63d6311969cef3ef74b 100644 (file)
@@ -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;