From 661f653956be3b702ef0e3c09ca7559eabc41cdd Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Fri, 17 Jan 2020 21:18:31 +0400 Subject: [PATCH] [Core] Fix OSX build in switch_ivr_originate.c --- src/switch_ivr_originate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_ivr_originate.c b/src/switch_ivr_originate.c index 170a5ed1b8..2ae0919519 100644 --- a/src/switch_ivr_originate.c +++ b/src/switch_ivr_originate.c @@ -788,7 +788,7 @@ static uint8_t check_channel_status(originate_global_t *oglobals, uint32_t len, time_t elapsed = switch_epoch_time_now(NULL) - start; oglobals->originate_status[i].per_channel_progress_timelimit_sec = elapsed + extend_timeout; oglobals->originate_status[i].per_channel_timelimit_sec = elapsed + extend_timeout; - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "elapsed %" SWITCH_TIME_T_FMT ", timelimit extended to %u\n", elapsed, oglobals->originate_status[i].per_channel_timelimit_sec); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "elapsed %" TIME_T_FMT ", timelimit extended to %u\n", elapsed, oglobals->originate_status[i].per_channel_timelimit_sec); } else if (oglobals->cancel_timeout || cancel_timeout) { /* cancel timeout for this leg only */ oglobals->originate_status[i].per_channel_progress_timelimit_sec = 0;