comparison libpurple/protocols/yahoo/yahoo_aliases.c @ 18767:95529e8d3bb2

Get rid of this compile warning: yahoo_aliases.c: In function 'yahoo_update_alias': yahoo_aliases.c:236: warning: format '%i' expects type 'int', but argument 6 has type 'size_t'
author Mark Doliner <mark@kingant.net>
date Wed, 01 Aug 2007 06:23:02 +0000
parents 08a6a01b7ebe
children 44b4e8bd759b
comparison
equal deleted inserted replaced
18766:69556cf286f8 18767:95529e8d3bb2
227 227
228 request = g_strdup_printf("POST /%s HTTP/1.1\r\n" 228 request = g_strdup_printf("POST /%s HTTP/1.1\r\n"
229 "User-Agent: Mozilla/4.0 (compatible; MSIE 5.5)\r\n" 229 "User-Agent: Mozilla/4.0 (compatible; MSIE 5.5)\r\n"
230 "Cookie: T=%s; Y=%s\r\n" 230 "Cookie: T=%s; Y=%s\r\n"
231 "Host: %s\r\n" 231 "Host: %s\r\n"
232 "Content-Length: %i\r\n" 232 "Content-Length: %" G_GSIZE_FORMAT "\r\n"
233 "Cache-Control: no-cache\r\n\r\n" 233 "Cache-Control: no-cache\r\n\r\n"
234 "%s", 234 "%s",
235 webpage, yd->cookie_t,yd->cookie_y, webaddress, 235 webpage, yd->cookie_t,yd->cookie_y, webaddress,
236 strlen(content), content); 236 strlen(content), content);
237 237