Windows build fix for InfluxdbWriter

refs #5219
fixes #5334
This commit is contained in:
Michael Friedrich 2017-06-07 14:16:15 +02:00
parent 5ab928f819
commit 2a4359d7e8

View File

@ -228,7 +228,7 @@ String InfluxdbWriter::FormatInteger(int val)
String InfluxdbWriter::FormatBoolean(bool val)
{
return String(val);
return val ? "true" : "false";
}
void InfluxdbWriter::SendPerfdata(const Dictionary::Ptr& tmpl, const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, double ts)