From 949b1a13bf4434ade235fdcd783c5fe0d27c0c3b Mon Sep 17 00:00:00 2001 From: Steve L'Homme Date: Wed, 1 Nov 2006 22:39:58 +0000 Subject: Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts. patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/flvenc.c') diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 4be6b7051a..82485ceff8 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -239,7 +239,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) int size= pkt->size; int flags; -// av_log(s, AV_LOG_DEBUG, "type:%d pts: %lld size:%d\n", enc->codec_type, timestamp, size); +// av_log(s, AV_LOG_DEBUG, "type:%d pts: %"PRId64" size:%d\n", enc->codec_type, timestamp, size); if (enc->codec_type == CODEC_TYPE_VIDEO) { put_byte(pb, 9); -- cgit v1.2.3