ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Fri Mar 15 15:57:00 2024 +0100| [6e63295d4135c759afeda506f9ede182c0263aee] | committer: Andreas Rheinhardt
avformat/crypto: Avoid cast, use proper printf specifier Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6e63295d4135c759afeda506f9ede182c0263aee --- libavformat/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/crypto.c b/libavformat/crypto.c index 75b00020bc..4393fb6399 100644 --- a/libavformat/crypto.c +++ b/libavformat/crypto.c @@ -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; _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
