Commit 03872c22 authored by bcoudurier's avatar bcoudurier

fix a warning when DEBUG is defined


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5152 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b3433537
......@@ -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