another typecast added to please the borland compiler

This commit is contained in:
Daniel Stenberg 2003-03-03 06:42:52 +00:00
parent ffe5c46224
commit f70acd5979
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}