diff options
author | Nils Larsch <nils@openssl.org> | 2006-02-28 20:52:15 +0100 |
---|---|---|
committer | Nils Larsch <nils@openssl.org> | 2006-02-28 20:52:15 +0100 |
commit | 5aae935038a48202b7892a97dea6d4e08719d18b (patch) | |
tree | 952555277756247fe1cfb0d320948cfa188d056b /crypto/rc2 | |
parent | TS bugfixes: Do not hardcode message digest algorithms; fix ASN1 decoding. (diff) | |
download | openssl-5aae935038a48202b7892a97dea6d4e08719d18b.tar.xz openssl-5aae935038a48202b7892a97dea6d4e08719d18b.zip |
fix "#ifndef HZ" statement
PR: 1287
Diffstat (limited to 'crypto/rc2')
-rw-r--r-- | crypto/rc2/rc2speed.c | 6 |
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; |