Fixing compiler warnings.

This commit is contained in:
lotodore
2010-03-30 12:20:17 +00:00
parent adaec3d8cd
commit 0da0b4f8a0
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -327,7 +327,7 @@ ClientThread::SendRejectGameInvitation(unsigned gameId, DenyGameInvitationReason
boost::shared_ptr<NetPacket> packet(new NetPacket(NetPacket::Alloc));
packet->GetMsg()->present = PokerTHMessage_PR_rejectGameInvitationMessage;
RejectGameInvitationMessage_t *netReject = &packet->GetMsg()->choice.rejectGameInvitationMessage;
netReject->gameId = GetGameId();
netReject->gameId = gameId;
netReject->myRejectReason = static_cast<RejectGameInvReason_t>(reason);
m_ioService->post(boost::bind(&ClientThread::SendSessionPacket, shared_from_this(), packet));
}