From e3ae8d3344f146f28438746cb9033d8de5df00fd Mon Sep 17 00:00:00 2001 From: zampolli Date: Wed, 21 May 2008 07:33:37 +0000 Subject: [PATCH] Warning fixed. --- SHUTTLE/AliShuttle.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SHUTTLE/AliShuttle.cxx b/SHUTTLE/AliShuttle.cxx index d365d5c192d..bdc3a7405b8 100644 --- a/SHUTTLE/AliShuttle.cxx +++ b/SHUTTLE/AliShuttle.cxx @@ -2833,9 +2833,9 @@ Bool_t AliShuttle::Collect(Int_t run) { // query Shuttle logbook for earlier runs, check if some detectors are unprocessed, // flag them into fFirstUnprocessed array - TString whereClause(Form("where shuttle_done=0 and run < %d", run)); + TString whereClauseBis(Form("where shuttle_done=0 and run < %d", run)); TObjArray tmpLogbookEntries; - if (!QueryShuttleLogbook(whereClause, tmpLogbookEntries)) + if (!QueryShuttleLogbook(whereClauseBis, tmpLogbookEntries)) { Log("SHUTTLE", "Collect - Can't retrieve entries from Shuttle logbook"); return kFALSE; -- 2.43.0