On Tue, Jun 28, 2011 at 12:51:02PM -0700, Juan Lang wrote:
../../../dlls/netapi32/nbt.c:580:30: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
This is a false positive. h_addr_list is declared as a char **, and technically it is, but gethostbyname only returns IPv4 addresses, i.e. ones that can fit in a DWORD.
That doesn't sound like a problem that would give that warning.
David