summaryrefslogtreecommitdiff
path: root/channels/chan_vpb.cc
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2010-01-20 13:01:00 +0000
committerKevin P. Fleming <kpfleming@digium.com>2010-01-20 13:01:00 +0000
commit237f57cafe1fa8b22618bfc9357860d690c8a88e (patch)
tree9f6715254f98ca7c1893d1f5f28618384ae886ee /channels/chan_vpb.cc
parentc7be0271512ecca041ad8cce1483c85b52cef1b8 (diff)
Fix up compile breakage from ast_tvdiff_ms() API change.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@241503 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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);