Forgot to convert string to char*

This commit is contained in:
Flakebi 2015-07-29 02:25:32 +02:00
parent 324a93cd65
commit 37e78e85a6

View File

@ -284,7 +284,7 @@ void XmlCharacteristic::processBool(const std::string &processor, bool *value, b
*is_set = true;
}
else
Log::error("XmlCharacteristic::processBool", "Can't parse %s: Not a bool", processor);
Log::error("XmlCharacteristic::processBool", "Can't parse %s: Not a bool", processor.c_str());
}
void XmlCharacteristic::load(const XMLNode *node)