From f3f113efd649db93ff051d9954dc67e05b110dc3 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Mon, 11 Nov 2013 15:19:47 +0100 Subject: [PATCH] Livestatus: Fix program start time in status table. --- components/livestatus/statustable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/livestatus/statustable.cpp b/components/livestatus/statustable.cpp index bba91af9a..e62da669d 100644 --- a/components/livestatus/statustable.cpp +++ b/components/livestatus/statustable.cpp @@ -150,7 +150,7 @@ Value StatusTable::NagiosPidAccessor(const Value& row) Value StatusTable::ProgramStartAccessor(const Value& row) { - return Application::GetStartTime(); + return static_cast(Application::GetStartTime()); } Value StatusTable::NumHostsAccessor(const Value& row)