diff --git a/channels/chan_vpb.cc b/channels/chan_vpb.cc
index 551aab9e58cff207f5212eb1c32fb73e400b3752..f6a3ae6a511806b0a2a679cc333e6ad570e966da 100644
--- a/channels/chan_vpb.cc
+++ b/channels/chan_vpb.cc
@@ -644,8 +644,8 @@ static void get_callerid(struct vpb_pvt *p)
 			vpb_sleep(RING_SKIP);
 		}
 
-		ast_verb(4, "CID record - skipped %ldms trailing ring\n",
-				 ast_tvdiff_ms(ast_tvnow(), cid_record_time));
+		ast_verb(4, "CID record - skipped %lldms trailing ring\n",
+				 (long long int) ast_tvdiff_ms(ast_tvnow(), cid_record_time));
 		cid_record_time = ast_tvnow();
 
 		/* Record bit between the rings which contains the callerid */
@@ -658,8 +658,8 @@ static void get_callerid(struct vpb_pvt *p)
 		vpb_wave_close_write(ws);
 #endif
 
-		ast_verb(4, "CID record - recorded %ldms between rings\n",
-				 ast_tvdiff_ms(ast_tvnow(), cid_record_time));
+		ast_verb(4, "CID record - recorded %lldms between rings\n",
+				 (long long int) ast_tvdiff_ms(ast_tvnow(), cid_record_time));
 
 		ast_mutex_unlock(&p->record_lock);