FS-8054 #resolve #comment [mod_rayo] fix warning when building on Debian.

This commit is contained in:
Chris Rienzo 2015-08-26 10:52:33 -04:00
parent 451b6e393d
commit 03219436d5
1 changed files with 1 additions and 1 deletions

View File

@ -3818,7 +3818,7 @@ static switch_status_t rayo_call_on_read_frame(switch_core_session_t *session, s
*/
static int should_offer_to_client(struct rayo_client *rclient, char **offer_filters, int offer_filter_count)
{
if (!rclient->availability == PS_ONLINE) {
if (rclient->availability != PS_ONLINE) {
return 0;
}