mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 20:14:22 +02:00
fix warning on comparison in DS
This commit is contained in:
parent
cfd4a4a44a
commit
c3ae1136e1
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ int main(int argc, const char * argv[])
|
|||
|
||||
while (true) {
|
||||
if (agentList->getAgentSocket().receive((sockaddr *)&agentPublicAddress, packetData, &receivedBytes) &&
|
||||
(packetData[0] == PACKET_HEADER_DOMAIN_RFD) || (packetData[0] == PACKET_HEADER_DOMAIN_LIST_REQUEST)) {
|
||||
(packetData[0] == PACKET_HEADER_DOMAIN_RFD || packetData[0] == PACKET_HEADER_DOMAIN_LIST_REQUEST)) {
|
||||
std::map<char, Agent *> newestSoloAgents;
|
||||
|
||||
agentType = packetData[1];
|
||||
|
|
Loading…
Reference in a new issue