Mercurial > libavformat.hg
diff rtp.c @ 1443:404048ea11bc libavformat
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
patch by Steve Lhomme, slhomme divxcorp com
| author | diego |
|---|---|
| date | Wed, 01 Nov 2006 22:39:58 +0000 |
| parents | 2d8a17631520 |
| children | db97355877b1 |
line wrap: on
line diff
--- a/rtp.c Wed Nov 01 21:28:36 2006 +0000 +++ b/rtp.c Wed Nov 01 22:39:58 2006 +0000 @@ -671,7 +671,7 @@ { RTPDemuxContext *s = s1->priv_data; #if defined(DEBUG) - printf("RTCP: %02x %Lx %x\n", s->payload_type, ntp_time, s->timestamp); + printf("RTCP: %02x %"PRIx64" %x\n", s->payload_type, ntp_time, s->timestamp); #endif put_byte(&s1->pb, (RTP_VERSION << 6)); put_byte(&s1->pb, 200);
