summaryrefslogtreecommitdiffstats
path: root/crypto/rand/rand_win.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-09-11 11:43:35 +0000
committerRichard Levitte <levitte@openssl.org>2000-09-11 11:43:35 +0000
commit25a73f269021a0d3e8f25450196d9f3c75d3894e (patch)
tree2a5d4e5a13d4bf0975350e38b3f14f176767a0f2 /crypto/rand/rand_win.c
parentb1ccd57b18c4c2ea6f1a1199c3afdd33eb070baa (diff)
A cast is needed or Borland C will complain.
Diffstat (limited to 'crypto/rand/rand_win.c')
-rw-r--r--crypto/rand/rand_win.c2
1 files changed, 1 insertions, 1 deletions
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);
}