[asterisk-commits] russell: trunk r65964 - /trunk/main/rtp.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu May 24 11:07:57 MST 2007


Author: russell
Date: Thu May 24 13:07:56 2007
New Revision: 65964

URL: http://svn.digium.com/view/asterisk?view=rev&rev=65964
Log:
Make this build on *my* machine again, and hopefully not break others.

Modified:
    trunk/main/rtp.c

Modified: trunk/main/rtp.c
URL: http://svn.digium.com/view/asterisk/trunk/main/rtp.c?view=diff&rev=65964&r1=65963&r2=65964
==============================================================================
--- trunk/main/rtp.c (original)
+++ trunk/main/rtp.c Thu May 24 13:07:56 2007
@@ -1034,7 +1034,7 @@
 				ast_verbose("  Last SR(our NTP): %lu.%010lu\n",(unsigned long) ntohl(rtcpheader[i + 4]) >> 16,((unsigned long) ntohl(rtcpheader[i + 4]) << 16) * 4096);
 				ast_verbose("  DLSR: %4.4f (sec)\n",ntohl(rtcpheader[i + 5])/65536.0);
 				if (rtt)
-					ast_verbose("  RTT: %llu(sec)\n", rtt);
+					ast_verbose("  RTT: %lu(sec)\n", (unsigned long) rtt);
 			}
 			break;
 		case RTCP_PT_FUR:



More information about the asterisk-commits mailing list