diff options
| author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2017-01-13 14:22:36 -0800 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2017-01-13 14:22:36 -0800 |
| commit | 1346e31a8ee962c40b1f18cb8ff1d5fe866744e3 (patch) | |
| tree | 57b5ec7d8bdf094dcce714c52315dc845208ed05 /node | |
| parent | 54f25b14ee629bc2d8e68f2b373b832cfef522f7 (diff) | |
| download | infinitytier-1346e31a8ee962c40b1f18cb8ff1d5fe866744e3.tar.gz infinitytier-1346e31a8ee962c40b1f18cb8ff1d5fe866744e3.zip | |
Windows build fixes, Software update fix, warning removal.
Diffstat (limited to 'node')
| -rw-r--r-- | node/Multicaster.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp index 5c94cd3a..32dec9cf 100644 --- a/node/Multicaster.hpp +++ b/node/Multicaster.hpp @@ -220,7 +220,7 @@ private: { _GatherAuthKey() : member(0),networkId(0) {} _GatherAuthKey(const uint64_t nwid,const Address &a) : member(a.toInt()),networkId(nwid) {} - inline unsigned long hashCode() const { return (member ^ networkId); } + inline unsigned long hashCode() const { return (unsigned long)(member ^ networkId); } inline bool operator==(const _GatherAuthKey &k) const { return ((member == k.member)&&(networkId == k.networkId)); } uint64_t member; uint64_t networkId; |
