From: cblume Date: Fri, 16 Jul 2010 12:19:44 +0000 (+0000) Subject: compiler warnings X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=7e5954f09c947651a8e9312fa45ad1abc1682c45 compiler warnings --- diff --git a/TRD/AliTRDdigitsManager.cxx b/TRD/AliTRDdigitsManager.cxx index 6a6e339..9304fe3 100644 --- a/TRD/AliTRDdigitsManager.cxx +++ b/TRD/AliTRDdigitsManager.cxx @@ -533,7 +533,7 @@ Int_t AliTRDdigitsManager::GetTrack(Int_t track if ((track < 0) || (track >= kNDict)) { - AliError(Form("track %d out of bounds (size: %d, this: 0x%08x)",track,kNDict,this)); + AliError(Form("track %d out of bounds (size: %d, this: %08x)",track,kNDict,this)); return -1; } diff --git a/TRD/AliTRDseedV1.cxx b/TRD/AliTRDseedV1.cxx index 918ed71..6819af9 100644 --- a/TRD/AliTRDseedV1.cxx +++ b/TRD/AliTRDseedV1.cxx @@ -1318,7 +1318,7 @@ Bool_t AliTRDseedV1::Fit(UChar_t opt) } if(!IsCalibrated()) Calibrate(); if(opt>2){ - AliWarning(Form("Option [%d] outside range [0, 2]. Using default")); + AliWarning(Form("Option [%d] outside range [0, 2]. Using default",opt)); opt=0; }