From ce2af47d41cc790df1b18d9e80295a38747de19f Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sun, 30 Nov 2014 00:53:10 +0000 Subject: code cleanup, x64 fix git-svn-id: http://svn.miranda-ng.org/main/trunk@11163 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp') diff --git a/protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp b/protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp index c3543917f1..551c64fbe7 100644 --- a/protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp +++ b/protocols/Yahoo/src/libyahoo2/yahoo_httplib.cpp @@ -67,7 +67,7 @@ extern struct yahoo_callbacks *yc; extern enum yahoo_log_level log_level; -int yahoo_tcp_readline(char *ptr, int maxlen, int fd) +int yahoo_tcp_readline(char *ptr, int maxlen, INT_PTR fd) { int n, rc; char c; @@ -277,7 +277,7 @@ char *yahoo_xmldecode(const char *instr) return (str); } -typedef void (*http_connected)(int id, int fd, int error); +typedef void (*http_connected)(int id, INT_PTR fd, int error); struct callback_data { int id; @@ -286,7 +286,7 @@ struct callback_data { void *user_data; }; -static void connect_complete(int fd, int error, void *data) +static void connect_complete(INT_PTR fd, int error, void *data) { struct callback_data *ccd = (struct callback_data *) data; @@ -376,7 +376,7 @@ struct url_data { void *user_data; }; -static void yahoo_got_url_fd(int id, int fd, int error, void *data) +static void yahoo_got_url_fd(int id, INT_PTR fd, int error, void *data) { char *tmp=NULL; char buff[1024]; -- cgit v1.2.3