aboutsummaryrefslogtreecommitdiff
path: root/src/AudioCompress
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2010-05-11 18:40:38 -0700
committerAvuton Olrich <avuton@gmail.com>2010-05-11 18:48:22 -0700
commitbead892e21dd35bb1400797de0dcd5a17f6977e8 (patch)
treeb20acf2578916aaa5266c29feba644fd37e1074e /src/AudioCompress
parent8341daca4a7b9d0274636f760b00539347ac13fb (diff)
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.
Diffstat (limited to 'src/AudioCompress')
-rw-r--r--src/AudioCompress/compress.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AudioCompress/compress.h b/src/AudioCompress/compress.h
index cc875c6d..073d4af9 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 {