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 );
|
newpos = ffurl_seek( c->hd, pos, AVSEEK_SIZE );
|
||||||
if (newpos < 0) {
|
if (newpos < 0) {
|
||||||
av_log(h, AV_LOG_ERROR,
|
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;
|
return newpos;
|
||||||
}
|
}
|
||||||
pos = newpos - pos;
|
pos = newpos - pos;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user