summaryrefslogtreecommitdiffstats
path: root/src/Core/ConfigManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/ConfigManager.cpp')
-rw-r--r--src/Core/ConfigManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Core/ConfigManager.cpp b/src/Core/ConfigManager.cpp
index 5f40afd..d42db35 100644
--- a/src/Core/ConfigManager.cpp
+++ b/src/Core/ConfigManager.cpp
@@ -27,7 +27,7 @@ bool ConfigManager::parseLine(const std::vector<std::string> &section, const std
if(section.empty()) {
if(Common::Util::tolower(key) == "configmethod") {
if(Common::Util::tolower(value) == "mysql")
- methods |= (unsigned short)MYSQL;
+ methods |= (uint16_t)MYSQL;
else
return false;
}