aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_vpb.cc
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-20 13:01:00 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-20 13:01:00 +0000
commitb4d98df5500c509d16b56c7e4a51abe9baa6f142 (patch)
tree9f6715254f98ca7c1893d1f5f28618384ae886ee /channels/chan_vpb.cc
parentbbcc57ee3f637f63ec54c1e9be9f34f1b3d29002 (diff)
Fix up compile breakage from ast_tvdiff_ms() API change.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@241503 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_vpb.cc')
-rw-r--r--channels/chan_vpb.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_vpb.cc b/channels/chan_vpb.cc
index b0c9f2f25..551aab9e5 100644
--- a/channels/chan_vpb.cc
+++ b/channels/chan_vpb.cc
@@ -644,7 +644,7 @@ static void get_callerid(struct vpb_pvt *p)
vpb_sleep(RING_SKIP);
}
- ast_verb(4, "CID record - skipped %dms trailing ring\n",
+ ast_verb(4, "CID record - skipped %ldms trailing ring\n",
ast_tvdiff_ms(ast_tvnow(), cid_record_time));
cid_record_time = ast_tvnow();
@@ -658,7 +658,7 @@ static void get_callerid(struct vpb_pvt *p)
vpb_wave_close_write(ws);
#endif
- ast_verb(4, "CID record - recorded %dms between rings\n",
+ ast_verb(4, "CID record - recorded %ldms between rings\n",
ast_tvdiff_ms(ast_tvnow(), cid_record_time));
ast_mutex_unlock(&p->record_lock);