diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-03 06:42:52 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-03 06:42:52 +0000 |
commit | f70acd597944be7a82b73cf5bc81c6251ed8a9be (patch) | |
tree | 4b8059ee1125a177a7c5d4433e7d28f3450c661d /lib | |
parent | ffe5c462247ca9854ba981debe9559e2f00bb211 (diff) |
another typecast added to please the borland compiler
Diffstat (limited to 'lib')
-rw-r--r-- | lib/telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |