Commit f70acd59 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

another typecast added to please the borland compiler

parent ffe5c462
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
        }