asfdec: Fix printf format string length modifier

This commit is contained in:
Diego Biurrun 2012-12-31 11:26:17 +01:00
parent d894f74762
commit e817d9139f
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ static int asf_read_header(AVFormatContext *s)
}
}
if(avio_tell(pb) != gpos + gsize)
av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRIu64"\n", avio_tell(pb)-gpos, gsize);
av_log(s, AV_LOG_DEBUG, "gpos mismatch our pos=%"PRIu64", end=%"PRId64"\n", avio_tell(pb)-gpos, gsize);
avio_seek(pb, gpos + gsize, SEEK_SET);
}
ff_get_guid(pb, &g);