diff --git a/src/fne/network/FNENetwork.cpp b/src/fne/network/FNENetwork.cpp index 0db5cb47..cbe35d0f 100644 --- a/src/fne/network/FNENetwork.cpp +++ b/src/fne/network/FNENetwork.cpp @@ -479,7 +479,7 @@ void* FNENetwork::threadedNetworkRx(void* arg) } // if we don't have a stream ID and are receiving call data -- throw an error and discard - if (streamId == 0 && req->fneHeader.getFunction() == NET_FUNC::PROTOCOL) { + if (streamId == 0U && req->fneHeader.getFunction() == NET_FUNC::PROTOCOL) { std::string peerIdentity = network->resolvePeerIdentity(peerId); LogError(LOG_NET, "PEER %u (%s) malformed packet (no stream ID for a call?)", peerId, peerIdentity.c_str());