[Freeswitch-svn] [commit] r9465 - freeswitch/trunk/src
Freeswitch SVN
mikej at freeswitch.org
Fri Sep 5 12:16:37 EDT 2008
Author: mikej
Date: Fri Sep 5 12:16:36 2008
New Revision: 9465
Modified:
freeswitch/trunk/src/switch_channel.c
Log:
tweak
Modified: freeswitch/trunk/src/switch_channel.c
==============================================================================
--- freeswitch/trunk/src/switch_channel.c (original)
+++ freeswitch/trunk/src/switch_channel.c Fri Sep 5 12:16:36 2008
@@ -2120,10 +2120,10 @@
switch_snprintf(tmp, sizeof(tmp), "%d", billsec);
switch_channel_set_variable(channel, "billsec", tmp);
- switch_snprintf(tmp, sizeof(tmp), "%d", progresssec);
+ switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progresssec);
switch_channel_set_variable(channel, "progresssec", tmp);
- switch_snprintf(tmp, sizeof(tmp), "%d", progress_mediasec);
+ switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progress_mediasec);
switch_channel_set_variable(channel, "progress_mediasec", tmp);
switch_snprintf(tmp, sizeof(tmp), "%d", legbillsec);
@@ -2138,7 +2138,7 @@
switch_snprintf(tmp, sizeof(tmp), "%d", progressmsec);
switch_channel_set_variable(channel, "progressmsec", tmp);
- switch_snprintf(tmp, sizeof(tmp), "%d", progressusec);
+ switch_snprintf(tmp, sizeof(tmp), "%" SWITCH_TIME_T_FMT, progressusec);
switch_channel_set_variable(channel, "progress_mediamsec", tmp);
switch_snprintf(tmp, sizeof(tmp), "%d", legbillmsec);
More information about the Freeswitch-svn
mailing list