From 87ad50dbd8558b4b5c8b4489f1211cc2da048b59 Mon Sep 17 00:00:00 2001
From: scott snyder <scott.snyder@cern.ch>
Date: Mon, 24 Apr 2017 13:57:13 +0200
Subject: [PATCH] TrigT1CaloCalibTools: Fix gcc7 warning.

gcc7 warning: return of wrong type
---
 .../TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
index 367b9d98646..d5af1c05159 100644
--- a/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
+++ b/Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
@@ -83,13 +83,13 @@ namespace LVL1{
     sc = m_ttTool->retrieveConditions();
     if(!sc.isSuccess()) {
       ATH_MSG_ERROR( "Cannot retrieve Conditions in L1TriggerTowerTool." );
-      return StatusCode::RECOVERABLE;
+      return false;
     }
 
     // init trigger tower to cell mapping - needed each event?
     if(!m_cells2tt->initCaloCellsTriggerTowers(caloCellContainer)) {
       ATH_MSG_ERROR( "Can not initialize L1CaloCells2TriggerTowers with CaloCellContainer "<< m_caloCellContainerName );
-      return StatusCode::RECOVERABLE;
+      return false;
     }
 
     Identifier TTid;
-- 
GitLab