Fix build error on non-linux machines.

This commit is contained in:
stal 2013-08-30 09:25:22 -07:00
parent b37a016b6b
commit 0834e4ba31

View File

@ -95,7 +95,7 @@ static IP broadcast_ip(void)
ip.uint32 = ~0; /* Error occured, but try anyway? */
#else
ip.i = ~0;
ip.uint32 = ~0;
#endif
return ip;
}