From 2005260ba54e1b9210dfdb59edd31c0e061ee4f6 Mon Sep 17 00:00:00 2001 From: hristov Date: Tue, 8 Aug 2006 09:22:29 +0000 Subject: [PATCH] Removing compilation warning --- STEER/AliTagCreator.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/STEER/AliTagCreator.cxx b/STEER/AliTagCreator.cxx index a9d8c045a84..f7188caec04 100644 --- a/STEER/AliTagCreator.cxx +++ b/STEER/AliTagCreator.cxx @@ -119,10 +119,10 @@ Bool_t AliTagCreator::ReadLocalCollection(const char *localpath) { const char * pattern = "AliESDs.root"; Int_t counter = 0; - while(dirname = gSystem->GetDirEntry(dira)) { + while((dirname = gSystem->GetDirEntry(dira))) { sprintf(fPath,"%s/%s",localpath,dirname); void *dirb = gSystem->OpenDirectory(fPath); - while(filename = gSystem->GetDirEntry(dirb)) { + while((filename = gSystem->GetDirEntry(dirb))) { if(strstr(filename,pattern)) { TString fESDFileName; fESDFileName = fPath; -- 2.43.0