1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-14 22:22:59 +02:00

Define fallback for PRIX64, taken from a patch by Steve L'Homme.

Originally committed as revision 6867 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Steve L'Homme 2006-11-01 22:37:56 +00:00 committed by Diego Biurrun
parent 45f3704c6d
commit 523fc7c17d

View File

@ -109,6 +109,10 @@
#define PRIx64 "llx"
#endif
#ifndef PRIX64
#define PRIX64 "llX"
#endif
#ifndef PRId32
#define PRId32 "d"
#endif