From: Daniel Stenberg Date: Mon, 3 Mar 2003 06:42:52 +0000 (+0000) Subject: another typecast added to please the borland compiler X-Git-Tag: upstream/7.37.1~14844 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f70acd597944be7a82b73cf5bc81c6251ed8a9be;p=platform%2Fupstream%2Fcurl.git another typecast added to please the borland compiler --- diff --git a/lib/telnet.c b/lib/telnet.c index a3f3c8b59..bb73caeb3 100644 --- a/lib/telnet.c +++ b/lib/telnet.c @@ -1094,7 +1094,7 @@ CURLcode Curl_telnet(struct connectdata *conn) ssize_t bytes_written; char *buffer = buf; - if(!ReadFile(stdin_handle, buf, 255, &nread, NULL)) { + if(!ReadFile(stdin_handle, buf, 255, (LPDWORD)&nread, NULL)) { keepon = FALSE; break; }