diff options
author | Peter Ross <pross@xvid.org> | 2008-02-26 09:12:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-02-26 09:12:55 +0000 |
commit | fe0c188b4a3593a922eae6f6a4da81bc7328c5e1 (patch) | |
tree | 2980103c072891c637eead5c41b313765d03da56 /libavutil | |
parent | 00829b9bc103646a79614e15d15e0d2a0e0c6868 (diff) | |
download | ffmpeg-fe0c188b4a3593a922eae6f6a4da81bc7328c5e1.tar.gz |
This header just needs stdint.h, not inttypes.h, which is a superset of
stdint.h. This has the sideeffect of fixing the build on Interix.
patch by Pete Ross, pross xvid org
Originally committed as revision 12225 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/des.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/des.h b/libavutil/des.h index e0de03e246..70f89937c1 100644 --- a/libavutil/des.h +++ b/libavutil/des.h @@ -22,7 +22,7 @@ #ifndef FFMPEG_DES_H #define FFMPEG_DES_H -#include <inttypes.h> +#include <stdint.h> /** * \brief en- or decrypt an 64-bit block of data with DES |