Merge pull request #545 from stal888/patch-3

Fix build error on non-linux machines.
This commit is contained in:
irungentoo 2013-08-30 09:27:04 -07:00
commit 7110001b58

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;
}