Rene Brun
On Sat, 27 Mar 1999, Jacek M. Holeczek wrote:
> Hi,
> On this occasion I noticed a potential bug in :
> Int_t TTree::GetEvent(Int_t event, Int_t getall)
> there is :
> if (event < 0 || event > fEntries) return 0;
> should be :
> if (event < 0 || event > fEntries-1 ) return 0;
> Right ?
> Jacek.
>