Explorar o código

Times should be int64_t, not uint64_t

Adam Ierymenko %!s(int64=6) %!d(string=hai) anos
pai
achega
b3c2c0866f
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      node/Membership.hpp

+ 3 - 3
node/Membership.hpp

@@ -244,9 +244,9 @@ private:
 
 	// Time we last pushed our local credentials to this member
 	struct {
-		uint64_t tag[ZT_MAX_NETWORK_TAGS];
-		uint64_t cap[ZT_MAX_NETWORK_CAPABILITIES];
-		uint64_t coo[ZT_MAX_CERTIFICATES_OF_OWNERSHIP];
+		int64_t tag[ZT_MAX_NETWORK_TAGS];
+		int64_t cap[ZT_MAX_NETWORK_CAPABILITIES];
+		int64_t coo[ZT_MAX_CERTIFICATES_OF_OWNERSHIP];
 	} _localCredLastPushed;
 
 public: