Skip to content
Snippets Groups Projects
Commit 1474bf0a authored by Adrien Béraud's avatar Adrien Béraud Committed by Guillaume Roguez
Browse files

call: fix build warnings

This patch removes annoying build warnings on non casted unions.

Tuleap: #13
Change-Id: I9ec70dc559dea5973539b655b4d7a24ab22351ef
parent b495c406
No related branches found
No related tags found
No related merge requests found
......@@ -133,12 +133,13 @@ Call::setState(CallState call_state, ConnectionState cnx_state, signed code)
{
std::lock_guard<std::recursive_mutex> lock(callMutex_);
RING_DBG("[call:%s] state change %u/%u, cnx %u/%u, code %d", id_.c_str(),
callState_, call_state, connectionState_, cnx_state, code);
(unsigned)callState_, (unsigned)call_state, (unsigned)connectionState_,
(unsigned)cnx_state, code);
if (callState_ != call_state) {
if (not validStateTransition(call_state)) {
RING_ERR("[call:%s] invalid call state transition from %u to %u",
id_.c_str(), callState_, call_state);
id_.c_str(), (unsigned)callState_, (unsigned)call_state);
return false;
}
} else if (connectionState_ == cnx_state)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment