mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avformat/crypto: Avoid cast, use proper printf specifier
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
7b48cc61be
commit
6e63295d41
@ -254,7 +254,7 @@ static int64_t crypto_seek(URLContext *h, int64_t pos, int whence)
|
||||
newpos = ffurl_seek( c->hd, pos, AVSEEK_SIZE );
|
||||
if (newpos < 0) {
|
||||
av_log(h, AV_LOG_ERROR,
|
||||
"Crypto: seek_end - can't get file size (pos=%lld)\r\n", (long long int)pos);
|
||||
"Crypto: seek_end - can't get file size (pos=%"PRId64")\r\n", pos);
|
||||
return newpos;
|
||||
}
|
||||
pos = newpos - pos;
|
||||
|
Loading…
Reference in New Issue
Block a user