summaryrefslogtreecommitdiff
path: root/riff/Config.cpp
diff options
context:
space:
mode:
authorSrimanta Panda <srimanta.panda@stericsson.com>2011-10-13 10:17:16 +0200
committerSrimanta Panda <srimanta.panda@stericsson.com>2011-10-13 10:27:32 +0200
commit7b1ae2029ad33a38e1e718a33e2879325b389332 (patch)
treea86e4cb793dff0147649c5731b46981ac701fed5 /riff/Config.cpp
parentfac26f795cf96ec624a3a334ba9b78ea2d86811d (diff)
Added Windows Support
RIFF will be supported for the Windows platform. It requires libusb-win32 library to build it.
Diffstat (limited to 'riff/Config.cpp')
-rw-r--r--riff/Config.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/riff/Config.cpp b/riff/Config.cpp
index c35f333..127f2b7 100644
--- a/riff/Config.cpp
+++ b/riff/Config.cpp
@@ -15,6 +15,7 @@
* @{
*/
+
#include "Config.h"
#include "Utilities.h"
#include <fstream>
@@ -61,7 +62,7 @@ bool Config::load(const string& path)
return true;
} else {
- logger_.log(Logger::ERROR, "Failed to open configuration file \"%s\"", path.c_str());
+ logger_.log(Logger::ERR, "Failed to open configuration file \"%s\"", path.c_str());
return false;
}
}