diff options
author | Matthew Gregan <[email protected]> | 2011-08-30 17:53:34 +1200 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2011-08-30 17:53:34 +1200 |
commit | 69631c8209d4cebb99d3e0cab4a6037fff157e98 (patch) | |
tree | a30b31948baa32e3f0ce3d29502668834464a210 /include | |
parent | 122447ff356909c0827764d641af1d78a60f7748 (diff) | |
download | cubeb-69631c8209d4cebb99d3e0cab4a6037fff157e98.tar.gz cubeb-69631c8209d4cebb99d3e0cab4a6037fff157e98.zip |
warning fixes.
Diffstat (limited to 'include')
-rw-r--r-- | include/cubeb/cubeb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cubeb/cubeb.h b/include/cubeb/cubeb.h index 3d6cd4f..2dfdde1 100644 --- a/include/cubeb/cubeb.h +++ b/include/cubeb/cubeb.h @@ -91,12 +91,12 @@ typedef enum { /**< Native endian 16-bit signed PCM. */ CUBEB_SAMPLE_S16NE = CUBEB_SAMPLE_S16BE, /**< Native endian 32-bit IEEE floating point PCM. */ - CUBEB_SAMPLE_FLOAT32NE = CUBEB_SAMPLE_FLOAT32BE, + CUBEB_SAMPLE_FLOAT32NE = CUBEB_SAMPLE_FLOAT32BE #else /**< Native endian 16-bit signed PCM. */ CUBEB_SAMPLE_S16NE = CUBEB_SAMPLE_S16LE, /**< Native endian 32-bit IEEE floating point PCM. */ - CUBEB_SAMPLE_FLOAT32NE = CUBEB_SAMPLE_FLOAT32LE, + CUBEB_SAMPLE_FLOAT32NE = CUBEB_SAMPLE_FLOAT32LE #endif } cubeb_sample_format; |