diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-03 15:48:30 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-03 15:48:30 +0200 |
commit | 36219517c52ad97ab96545c9289b82890861d77b (patch) | |
tree | 7d1f73ac9c3c0009df86ef4210ecba6f39b90bd8 /src/SampleQueue.h | |
parent | e7a9a94fb8ebd50e10ed403ef871620181d3aa1d (diff) | |
download | ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.tar.gz ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.tar.bz2 ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.zip |
Enable -Wall and fix a few warnings
Diffstat (limited to 'src/SampleQueue.h')
-rw-r--r-- | src/SampleQueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SampleQueue.h b/src/SampleQueue.h index f39dbd7..95706ee 100644 --- a/src/SampleQueue.h +++ b/src/SampleQueue.h @@ -67,8 +67,8 @@ public: unsigned int channels, size_t max_size, bool drift_compensation) : - m_bytes_per_sample(bytes_per_sample), m_channels(channels), + m_bytes_per_sample(bytes_per_sample), m_max_size(max_size), m_push_block(not drift_compensation), m_overruns(0) {} |