Fix perfdata double value type formatting.

Fixes #5277
This commit is contained in:
Michael Friedrich 2013-12-16 16:57:30 +01:00
parent a840dc8694
commit 07e4bc03bc
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ String PerfdataValue::Format(const Value& perfdata)
PerfdataValue::Ptr pdv = perfdata;
std::ostringstream result;
result << pdv->GetValue();
result << Convert::ToString(pdv->GetValue());
String unit;