From 25a73f269021a0d3e8f25450196d9f3c75d3894e Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 11 Sep 2000 11:43:35 +0000 Subject: [PATCH] A cast is needed or Borland C will complain. --- crypto/rand/rand_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.25.1