From 50b1b7fc206eeb29d251ebb2b9e4051907efe0f3 Mon Sep 17 00:00:00 2001 From: aszostak Date: Wed, 5 Nov 2008 14:01:07 +0000 Subject: [PATCH] Removing warning from gcc 4.3 --- HLT/MUON/utils/AliHLTMUONEmptyEventFilterComponent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HLT/MUON/utils/AliHLTMUONEmptyEventFilterComponent.cxx b/HLT/MUON/utils/AliHLTMUONEmptyEventFilterComponent.cxx index 241431ff237..6f3ebf4cceb 100644 --- a/HLT/MUON/utils/AliHLTMUONEmptyEventFilterComponent.cxx +++ b/HLT/MUON/utils/AliHLTMUONEmptyEventFilterComponent.cxx @@ -260,7 +260,7 @@ int AliHLTMUONEmptyEventFilterComponent::DoEvent( // If we are filtering or required to send only empty events then // copy all the input blocks to the output. - if (emptyEvent and fSendOnEmpty or not emptyEvent and not fSendOnEmpty) + if ((emptyEvent and fSendOnEmpty) or (not emptyEvent and not fSendOnEmpty)) { for (AliHLTUInt32_t n = 0; n < evtData.fBlockCnt; n++) { -- 2.39.3