From: Michael Friedrich Date: Tue, 17 Dec 2013 17:33:17 +0000 (+0100) Subject: Fix some more compiler warnings. X-Git-Tag: v0.0.6~9^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9f82274fceba542c6d9bd0efb825acdbf3731c59;p=icinga2 Fix some more compiler warnings. Refs #5348 --- 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;