diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-05-11 18:40:38 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-05-11 18:48:22 -0700 |
commit | bead892e21dd35bb1400797de0dcd5a17f6977e8 (patch) | |
tree | b20acf2578916aaa5266c29feba644fd37e1074e | |
parent | 8341daca4a7b9d0274636f760b00539347ac13fb (diff) | |
download | mpd-bead892e21dd35bb1400797de0dcd5a17f6977e8.tar.gz mpd-bead892e21dd35bb1400797de0dcd5a17f6977e8.tar.xz mpd-bead892e21dd35bb1400797de0dcd5a17f6977e8.zip |
AudioCompress: include stdint.h for int16_t definition.
In mingw32, int16_t is not defined by sys/types.h, but it is by stdint.h,
and it is in the int16_t man page as being defined in stdint.h. Thanks to
mithi for help debugging.
-rw-r--r-- | src/AudioCompress/compress.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AudioCompress/compress.h b/src/AudioCompress/compress.h index cc875c6da..073d4af9a 100644 --- a/src/AudioCompress/compress.h +++ b/src/AudioCompress/compress.h @@ -8,7 +8,7 @@ #ifndef COMPRESS_H #define COMPRESS_H -#include <sys/types.h> +#include <stdint.h> //! Configuration values for the compressor object struct CompressorConfig { |