aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-01-13 19:13:09 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-01-13 19:13:09 +0000
commitce4ebc27744e529c6b790c4fe790ce85c9349da3 (patch)
tree30a5b7bc584b71edae4337bcf2cd7c0b500e200c /src/plugins/General
parent34e34074e0366fce3e221c1ed69f053c800eced0 (diff)
downloadqmmp-ce4ebc27744e529c6b790c4fe790ce85c9349da3.tar.gz
qmmp-ce4ebc27744e529c6b790c4fe790ce85c9349da3.tar.bz2
qmmp-ce4ebc27744e529c6b790c4fe790ce85c9349da3.zip
fixed gcc6 issues
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6977 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General')
-rw-r--r--src/plugins/General/converter/converter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/General/converter/converter.cpp b/src/plugins/General/converter/converter.cpp
index de7aafe41..417c2784d 100644
--- a/src/plugins/General/converter/converter.cpp
+++ b/src/plugins/General/converter/converter.cpp
@@ -301,10 +301,10 @@ bool Converter::convert(Decoder *decoder, FILE *file, bool use16bit)
outFormat = Qmmp::PCM_S8;
else if(ap.sampleSize() == 2)
outFormat = Qmmp::PCM_S16LE;
- else if(ap.sampleSize() == 4)
+ else if(ap.sampleSize() == 4)
outFormat = Qmmp::PCM_S32LE;
- outConverter.configure(outFormat);
+ outConverter.configure(outFormat);
int outSampleSize = AudioParameters::sampleSize(outFormat);