trivial compiler warning

This commit is contained in:
Jeff Lenk 2011-05-31 14:10:21 -05:00
parent 17e2cbb380
commit 332a5805a1

View File

@ -411,7 +411,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_media_bug_transfer_recordings(switch
if (!strcmp(bp->function, "session_record")) { if (!strcmp(bp->function, "session_record")) {
list[x] = switch_core_session_strdup(new_session, bp->target); list[x] = switch_core_session_strdup(new_session, bp->target);
if (bp->stop_time > 0) { 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++; x++;
} }