]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix a compiler warning
authorcblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 29 Nov 2007 09:29:36 +0000 (09:29 +0000)
committercblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 29 Nov 2007 09:29:36 +0000 (09:29 +0000)
TRD/AliTRDstackLayer.cxx

index 65863ed307b763673eb8ec647de45588b3abe2cc..cb27a857824d63df12206c60ea77d45cd4c9f81c 100644 (file)
@@ -540,8 +540,8 @@ void AliTRDstackLayer::PrintClusters() const
 {
 // Prints the position of each cluster in the stacklayer on the stdout
 //
-       printf("fDebugStream = %p\n", fDebugStream);
-       printf("fRecoParam   = %p\n", fRecoParam);
+       printf("fDebugStream = %#o\n", ((Int_t) fDebugStream));
+       printf("fRecoParam   = %#o\n", ((Int_t) fRecoParam));
        
        for(Int_t i = 0; i < fN; i++){
                printf("AliTRDstackLayer: index=%i, Cluster: X = %3.3f, Y = %3.3f, Z = %3.3f\n", i,  fClusters[i]->GetX(),fClusters[i]->GetY(),fClusters[i]->GetZ());