Fixed trucation of value warning.

There was a parameter mismatch between abs(), which expects an int,
and atol() which returns a long. Since max_drift is defined as an int,
there is no need to pars q as a long rather than an int.
This commit is contained in:
Kathleen King 2014-07-03 14:41:24 -07:00
parent aef569172b
commit 85699480b3
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ static switch_status_t channel_receive_message(switch_core_session_t *session, s
maxlen = atol(p);
if ((q = strchr(p, ':'))) {
q++;
max_drift = abs(atol(q));
max_drift = abs(atoi(q));
}
}
}