From: Richard Levitte Date: Mon, 18 Sep 2000 11:44:40 +0000 (+0000) Subject: cyclecount is only used when __GNUC__ isn't defined. X-Git-Tag: OpenSSL_0_9_6-beta3~47 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=159cf04e86bc2d0ad6105322531aee750effb5c6 cyclecount is only used when __GNUC__ isn't defined. --- diff --git a/crypto/rand/rand_win.c b/crypto/rand/rand_win.c index 2a4f767813..acdef30518 100644 --- a/crypto/rand/rand_win.c +++ b/crypto/rand/rand_win.c @@ -525,11 +525,12 @@ void RAND_screen(void) /* function available for backward compatibility */ /* feed timing information to the PRNG */ static void readtimer(void) { - DWORD w, cyclecount; + DWORD w; LARGE_INTEGER l; static int have_perfc = 1; #ifndef __GNUC__ static int have_tsc = 1; + DWORD cyclecount; if (have_tsc) { __try {