Skip to content

Commit 3d561b0

Browse files
committed
fixed:build error
1 parent b21d069 commit 3d561b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

XEngine_Source/MQCore_ProtocolModule/ProtocolModule_Packet/ProtocolModule_Packet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ bool CProtocolModule_Packet::ProtocolModule_Packet_UNReadMsg(XCHAR* ptszMsgBuffe
624624
{
625625
Json::Value st_JsonObject;
626626
st_JsonObject["tszUserName"] = (*pppSt_UserKey)[i]->tszUserName;
627-
st_JsonObject["nKeySerial"] = (*pppSt_UserKey)[i]->nKeySerial;
627+
st_JsonObject["nKeySerial"] = (Json::Value::Int64)(*pppSt_UserKey)[i]->nKeySerial;
628628
st_JsonObject["tszCreateTime"] = (*pppSt_UserKey)[i]->tszCreateTime;
629629
st_JsonObject["tszKeyName"] = (*pppSt_UserKey)[i]->tszKeyName;
630630
st_JsonObject["tszUPTime"] = (*pppSt_UserKey)[i]->tszUPTime;

0 commit comments

Comments
 (0)