From 523fc7c17ddd0b4e31b9fb590483ac4c34e0b5f8 Mon Sep 17 00:00:00 2001 From: Steve L'Homme Date: Wed, 1 Nov 2006 22:37:56 +0000 Subject: Define fallback for PRIX64, taken from a patch by Steve L'Homme. Originally committed as revision 6867 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/common.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavutil/common.h b/libavutil/common.h index babdab2064..b4a9112ee9 100644 --- a/libavutil/common.h +++ b/libavutil/common.h @@ -109,6 +109,10 @@ #define PRIx64 "llx" #endif +#ifndef PRIX64 +#define PRIX64 "llX" +#endif + #ifndef PRId32 #define PRId32 "d" #endif -- cgit v1.2.3