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/VLCInput.cpp | |
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/VLCInput.cpp')
-rw-r--r-- | src/VLCInput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VLCInput.cpp b/src/VLCInput.cpp index ae7356f..80e85be 100644 --- a/src/VLCInput.cpp +++ b/src/VLCInput.cpp @@ -82,7 +82,7 @@ void handleStream_size_t( { VLCInput* in = (VLCInput*)p_audio_data; - assert(rate == in->getRate()); + assert((ssize_t)rate == in->getRate()); assert(bits_per_sample == 8*bytes_per_float_sample); // This assumes VLC always gives back the full |