trivial compiler warning

This commit is contained in:
Jeff Lenk 2011-05-31 14:10:21 -05:00
parent 17e2cbb380
commit 332a5805a1
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_transfer_recordings(switch
if (!strcmp(bp->function, "session_record")) {
list[x] = switch_core_session_strdup(new_session, bp->target);
if (bp->stop_time > 0) {
stop_times[x] = bp->stop_time - switch_epoch_time_now(NULL);
stop_times[x] = (int)(bp->stop_time - switch_epoch_time_now(NULL));
}
x++;
}