aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sndfile
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-06-15 07:14:23 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2016-06-15 07:14:23 +0000
commit60c100abc0eccfd437a92f033fb8ef07c0d58714 (patch)
tree868c09a83b5099df57adf78181c438c063050455 /src/plugins/Input/sndfile
parent4d829e8283fa1e1c4fef5ce455ba92788a5633ec (diff)
downloadqmmp-60c100abc0eccfd437a92f033fb8ef07c0d58714.tar.gz
qmmp-60c100abc0eccfd437a92f033fb8ef07c0d58714.tar.bz2
qmmp-60c100abc0eccfd437a92f033fb8ef07c0d58714.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6459 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sndfile')
-rw-r--r--src/plugins/Input/sndfile/decodersndfilefactory.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/Input/sndfile/decodersndfilefactory.cpp b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
index f7665154d..bf062aa55 100644
--- a/src/plugins/Input/sndfile/decodersndfilefactory.cpp
+++ b/src/plugins/Input/sndfile/decodersndfilefactory.cpp
@@ -44,10 +44,8 @@ bool DecoderSndFileFactory::supports(const QString &source) const
SNDFILE *sndfile = sf_open(source.toLocal8Bit().constData(), SFM_READ, &snd_info);
#endif
if (!sndfile)
- {
- qDebug("failed!!");
return false;
- }
+
sf_close (sndfile);
sndfile = 0;
return true;