From: Richard Levitte Date: Mon, 11 Sep 2000 11:43:35 +0000 (+0000) Subject: A cast is needed or Borland C will complain. X-Git-Tag: OpenSSL-engine-0_9_6-beta2~13^2~16 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=25a73f269021a0d3e8f25450196d9f3c75d3894e A cast is needed or Borland C will complain. --- diff --git a/crypto/rand/rand_win.c b/crypto/rand/rand_win.c index 017ce2a9fc..cb8e17634f 100644 --- a/crypto/rand/rand_win.c +++ b/crypto/rand/rand_win.c @@ -236,7 +236,7 @@ int RAND_poll(void) if (cursor) { /* cursor position */ - cursor(buf); + cursor((PCURSORINFO)buf); RAND_add(buf, sizeof(buf), 0); }