From 33fe9dfba589f3e8b3d518790397de9828eb7617 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 13 Aug 2014 22:30:47 +0200 Subject: [PATCH] [DEV] change default Instance --- ewolsa/LoadedFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ewolsa/LoadedFile.cpp b/ewolsa/LoadedFile.cpp index d778262..741d22a 100644 --- a/ewolsa/LoadedFile.cpp +++ b/ewolsa/LoadedFile.cpp @@ -30,7 +30,7 @@ ewolsa::LoadedFile::LoadedFile(const std::string& _fileName, int8_t _nbChanReque m_requestedTime(1), m_data(NULL){ m_thread = NULL; - std::string tmpName = std::tolower(m_file); + std::string tmpName = etk::tolower(m_file); // select the corect Loader : if (end_with(tmpName, ".wav") == true) { m_data = ewolsa::wav::loadAudioFile(m_file, m_nbChanRequested, m_nbSamples);