From 0ab16fe09d913830150cc9deb38e7acf3ff3c986 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 11 Mar 2006 18:43:10 +0000 Subject: [PATCH] fix a warning when DEBUG is defined Originally committed as revision 5152 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index a40910572d..d336b2c1ba 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -779,7 +779,7 @@ static int mov_read_alac(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) if (st->codec->extradata) { strcpy(st->codec->extradata + 4, "alac"); // fake get_buffer(pb, st->codec->extradata + 8, 36 - 8); - dprintf("Reading alac %Ld %s\n", st->codec->extradata_size, (char*)st->codec->extradata); + dprintf("Reading alac %d %s\n", st->codec->extradata_size, (char*)st->codec->extradata); } else url_fskip(pb, atom.size); return 0;