Fix all GNU %Ld
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
35f707abe1
commit
9aeaf62903
3 changed files with 3 additions and 3 deletions
|
@ -2586,7 +2586,7 @@ static int update_first_fragment(AVFormatContext *s)
|
|||
if(mov->reserved_moov_size){
|
||||
int64_t size= mov->reserved_moov_size - (avio_tell(pb) - mov->reserved_moov_pos);
|
||||
if(size < 8){
|
||||
av_log(s, AV_LOG_ERROR, "reserved_moov_size is too small, needed %Ld additional\n", 8-size);
|
||||
av_log(s, AV_LOG_ERROR, "reserved_moov_size is too small, needed %"PRId64" additional\n", 8-size);
|
||||
return -1;
|
||||
}
|
||||
avio_wb32(pb, size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue