mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 08:39:20 +00:00
Fixed signedness conversion issue
This commit is contained in:
parent
578a88e552
commit
6cd4752bdf
1 changed files with 1 additions and 1 deletions
|
|
@ -4389,7 +4389,7 @@ LinphoneStatus MediaSession::sendDtmfs (const std::string &dtmfs) {
|
|||
return -2;
|
||||
}
|
||||
if (!dtmfs.empty()) {
|
||||
unsigned int delayMs = lp_config_get_int(linphone_core_get_config(getCore()->getCCore()), "net", "dtmf_delay_ms", 200);
|
||||
unsigned int delayMs = (unsigned int) 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");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue