From f0c71181cb413ce8d7309e113fd074a7718a1b59 Mon Sep 17 00:00:00 2001 From: richterm Date: Wed, 25 Aug 2010 11:52:38 +0000 Subject: [PATCH] correcting compilation warning --- HLT/BASE/util/AliHLTBlockFilterComponent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HLT/BASE/util/AliHLTBlockFilterComponent.cxx b/HLT/BASE/util/AliHLTBlockFilterComponent.cxx index c275a6e3c46..191c71bf02b 100644 --- a/HLT/BASE/util/AliHLTBlockFilterComponent.cxx +++ b/HLT/BASE/util/AliHLTBlockFilterComponent.cxx @@ -199,7 +199,7 @@ int AliHLTBlockFilterComponent::DoEvent( const AliHLTComponentEventData& /*evtDa // see header file for class documentation int iResult=0; if ((fPrescalar==0 || ((GetEventCount())%fPrescalar)==0) && - GetEventCount()>=fFirstEvent) { + GetEventCount()>=(int)fFirstEvent) { for (const AliHLTComponentBlockData* pBlock=GetFirstInputBlock(); pBlock!=NULL; pBlock=GetNextInputBlock()) { -- 2.43.5