From 643d5ac364575c4a9240dc269ed254b71e11f9c1 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Fri, 5 Dec 2008 19:14:51 +0000 Subject: [PATCH] use correct format string git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10626 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_channel.c b/src/switch_channel.c index 57aa7b5311..0ab57e923d 100644 --- a/src/switch_channel.c +++ b/src/switch_channel.c @@ -2307,7 +2307,7 @@ SWITCH_DECLARE(switch_status_t) switch_channel_set_timestamps(switch_channel_t * switch_snprintf(tmp, sizeof(tmp), "%d", progressmsec); switch_channel_set_variable(channel, "progressmsec", tmp); - switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progressmsec); + switch_snprintf(tmp, sizeof(tmp), "%d" , progressmsec); switch_channel_set_variable(channel, "progress_mediamsec", tmp); switch_snprintf(tmp, sizeof(tmp), "%d", legbillmsec);