diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-06-13 23:36:30 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-06-13 23:36:30 +0000 |
commit | 4fd60448590dfd09c4c889dd605a52cf9bfb808c (patch) | |
tree | 41e2903a8b4efdfc4c74a1ca430829a2b77e6ff6 | |
parent | ce992c69326585d09cdb31c0e4481bafb0ad45fe (diff) | |
download | ffmpeg-4fd60448590dfd09c4c889dd605a52cf9bfb808c.tar.gz |
reverted to inttypes.h since it gives problems on some unixes
Originally committed as revision 690 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index 10f882ec26..e4ac69c0d1 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -77,7 +77,7 @@ typedef INT64 int64_t; /* unix */ -#include <stdint.h> +#include <inttypes.h> #ifndef __WINE_WINDEF16_H /* workaround for typedef conflict in MPlayer (wine typedefs) */ |