summaryrefslogtreecommitdiff
path: root/ares_init.c
diff options
context:
space:
mode:
authorBen Greear <greearb@candelatech.com>2010-07-30 10:09:57 -0700
committerBen Greear <greearb@candelatech.com>2010-07-30 10:09:57 -0700
commitf575aea364677a3c318e76972e67963ef873c813 (patch)
treedf93179a30eb40fe04f7d6199feb1ed14be87ad6 /ares_init.c
parent03c1378e84374fe8102a3968a884c4eec95ca3ef (diff)
downloadc-ares-f575aea364677a3c318e76972e67963ef873c813.tar.gz
c-ares-f575aea364677a3c318e76972e67963ef873c813.tar.bz2
c-ares-f575aea364677a3c318e76972e67963ef873c813.zip
remove all uses of uint32_t
Previous fix forgot a few. Signed-off-by: Ben Greear <greearb@candelatech.com>
Diffstat (limited to 'ares_init.c')
-rw-r--r--ares_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares_init.c b/ares_init.c
index 718d552..b2d8ed1 100644
--- a/ares_init.c
+++ b/ares_init.c
@@ -1612,7 +1612,7 @@ unsigned short ares__generate_new_id(rc4_key* key)
return r;
}
-void ares_set_local_ip4(ares_channel channel, uint32_t local_ip)
+void ares_set_local_ip4(ares_channel channel, unsigned int local_ip)
{
channel->local_ip4 = local_ip;
}