From 9f82274fceba542c6d9bd0efb825acdbf3731c59 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 17 Dec 2013 18:33:17 +0100 Subject: [PATCH] Fix some more compiler warnings. Refs #5348 --- components/livestatus/statehisttable.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/livestatus/statehisttable.cpp b/components/livestatus/statehisttable.cpp index 506e81ed1..d233803c9 100644 --- a/components/livestatus/statehisttable.cpp +++ b/components/livestatus/statehisttable.cpp @@ -71,7 +71,6 @@ void StateHistTable::UpdateLogCache(const Dictionary::Ptr& bag, int line_count, String host_name = bag->Get("host_name"); String service_description = bag->Get("service_description"); unsigned long state = bag->Get("state"); - int log_class = bag->Get("log_class"); int log_type = bag->Get("log_type"); String state_type = bag->Get("state_type"); //SOFT, HARD, STARTED, STOPPED, ... String log_line = bag->Get("message"); /* use message from log table */ @@ -131,7 +130,6 @@ void StateHistTable::UpdateLogCache(const Dictionary::Ptr& bag, int line_count, } /* state duration */ - bool gone = state_hist_bag->Get("gone"); /* this requires initial state logging and setting it if not found TODO */ /* determine service notifications notification_period and compare against current timestamp */ bool in_notification_period = true;