Gyan Doshi (12021-04-04): > > Fixes the following GCC warning: > > warning: format ‘%lld’ expects argument of type ‘long long int’, > > but argument 4 has type ‘int64_t’ {aka ‘long int’} [-Wformat=] > > Weird. I switched to lld because gcc (10.2) recommended it. > > In fact, I just looked through the build log for my Windows build compiled > minutes ago, and there's no warning.
There is nothing weird about it: the int64_t type and its type specifiers exist specifically because long and long long have different meanings on different compilers. If you are writing new C code with explicit references to long or short, you are almost certainly doing it wrong. Regards, -- Nicolas George
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".