Skip to content

Commit c4a9ff5

Browse files
committed
fixed:build error on linux
1 parent fc2416b commit c4a9ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XEngine_Source/AuthorizeModule_Protocol/Protocol_Packet/Protocol_Packet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ bool CProtocol_Packet::Protocol_Packet_HDRComm(XCHAR* ptszMsgBuffer, int* pInt_M
7070
Json::Value st_JsonRoot;
7171
st_JsonRoot["wHeader"] = pSt_ProtocolHdr->wHeader;
7272
st_JsonRoot["wTail"] = pSt_ProtocolHdr->wTail;
73-
st_JsonRoot["xhToken"] = pSt_ProtocolHdr->xhToken;
73+
st_JsonRoot["xhToken"] = (Json::Value::UInt64)pSt_ProtocolHdr->xhToken;
7474
st_JsonRoot["unOperatorType"] = pSt_ProtocolHdr->unOperatorType;
7575
st_JsonRoot["unOperatorCode"] = pSt_ProtocolHdr->unOperatorCode;
7676
st_JsonRoot["wCrypto"] = pSt_ProtocolHdr->wCrypto;

0 commit comments

Comments
 (0)