Commit 0ab16fe0 authored by Baptiste Coudurier's avatar Baptiste Coudurier

fix a warning when DEBUG is defined

Originally committed as revision 5152 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c6e722e5
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment