[svn-commits] russell: trunk r253538 - in /trunk/apps: app_dial.c app_followme.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Sat Mar 20 06:43:12 CDT 2010
Author: russell
Date: Sat Mar 20 06:43:08 2010
New Revision: 253538
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=253538
Log:
Resolve compiler warnings on FreeBSD.
Modified:
trunk/apps/app_dial.c
trunk/apps/app_followme.c
Modified: trunk/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_dial.c?view=diff&rev=253538&r1=253537&r2=253538
==============================================================================
--- trunk/apps/app_dial.c (original)
+++ trunk/apps/app_dial.c Sat Mar 20 06:43:08 2010
@@ -1570,12 +1570,12 @@
ast_channel_lock(chan);
if (chan->cdr->answer.tv_sec) {
- snprintf(buf, sizeof(buf), "%ld", end - chan->cdr->answer.tv_sec);
+ snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->answer.tv_sec);
pbx_builtin_setvar_helper(chan, "ANSWEREDTIME", buf);
}
if (chan->cdr->start.tv_sec) {
- snprintf(buf, sizeof(buf), "%ld", end - chan->cdr->start.tv_sec);
+ snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->start.tv_sec);
pbx_builtin_setvar_helper(chan, "DIALEDTIME", buf);
}
ast_channel_unlock(chan);
Modified: trunk/apps/app_followme.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_followme.c?view=diff&rev=253538&r1=253537&r2=253538
==============================================================================
--- trunk/apps/app_followme.c (original)
+++ trunk/apps/app_followme.c Sat Mar 20 06:43:08 2010
@@ -990,12 +990,12 @@
ast_channel_lock(chan);
if (chan->cdr->answer.tv_sec) {
- snprintf(buf, sizeof(buf), "%ld", end - chan->cdr->answer.tv_sec);
+ snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->answer.tv_sec);
pbx_builtin_setvar_helper(chan, "ANSWEREDTIME", buf);
}
if (chan->cdr->start.tv_sec) {
- snprintf(buf, sizeof(buf), "%ld", end - chan->cdr->start.tv_sec);
+ snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->start.tv_sec);
pbx_builtin_setvar_helper(chan, "DIALEDTIME", buf);
}
ast_channel_unlock(chan);
More information about the svn-commits
mailing list