# HG changeset patch # User Mark Doliner # Date 1111284408 0 # Node ID b221bc891e7a963755b8f9a989e2fd0f04fc9fa7 # Parent 194167d8a3b603b76640191a1deda0aa40c63adf [gaim-migrate @ 12291] sf patch #1162827, from Rian Hunter Fix a 64bit IPC dns child bug committer: Tailor Script diff -r 194167d8a3b6 -r b221bc891e7a src/proxy.c --- a/src/proxy.c Sun Mar 20 01:58:53 2005 +0000 +++ b/src/proxy.c Sun Mar 20 02:06:48 2005 +0000 @@ -419,7 +419,7 @@ static void gaim_dns_childthread(int child_out, int child_in, dns_params_t *dns_params, gboolean show_debug) { - const int zero = 0; + const size_t zero = 0; int rc; #if HAVE_GETADDRINFO struct addrinfo hints, *res, *tmp;