mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 07:45:26 +00:00
elapsed needs typecasting. (introduced in svn 15027)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15033 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
050eeb2269
commit
05d6342ffb
@ -253,7 +253,7 @@ static int check_per_channel_timeouts(originate_global_t *oglobals,
|
||||
delayed_min = originate_status[i].per_channel_delay_start;
|
||||
}
|
||||
}
|
||||
early_exit_time = delayed_min - elapsed;
|
||||
early_exit_time = delayed_min - (uint32_t) elapsed;
|
||||
}
|
||||
for (i = 0; i < max; i++) {
|
||||
if (originate_status[i].peer_channel && originate_status[i].per_channel_delay_start && (elapsed > originate_status[i].per_channel_delay_start || active_channels == 0) ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user