소스 검색

Times should be int64_t, not uint64_t

Adam Ierymenko 6 년 전
부모
커밋
b3c2c0866f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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: