Fixed build

This commit is contained in:
Sylvain Berfini 2017-12-07 10:23:42 +01:00
parent 6dc6e0d431
commit 578a88e552

View file

@ -4389,7 +4389,7 @@ LinphoneStatus MediaSession::sendDtmfs (const std::string &dtmfs) {
return -2;
}
if (!dtmfs.empty()) {
int delayMs = lp_config_get_int(linphone_core_get_config(getCore()->getCCore()), "net", "dtmf_delay_ms", 200);
unsigned int delayMs = lp_config_get_int(linphone_core_get_config(getCore()->getCCore()), "net", "dtmf_delay_ms", 200);
d->dtmfSequence = dtmfs;
d->dtmfTimer = getCore()->getCCore()->sal->create_timer(MediaSessionPrivate::sendDtmf, this, delayMs, "DTMF sequence timer");
}