Skip to content

Commit cf3cb51

Browse files
committed
GPU: Fix compiler warning
1 parent 599215a commit cf3cb51

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

GPU/GPUTracking/DataCompression/TPCClusterDecompressor.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ int TPCClusterDecompressor::decompress(const CompressedClusters* clustersCompres
8383
if (clusters[i][j].size()) {
8484
memcpy((void*)buffer, (const void*)clusters[i][j].data(), clusters[i][j].size() * sizeof(clusterBuffer[0]));
8585
}
86-
ClusterNative* cl = buffer + clusters[i][j].size();
86+
ClusterNative* clout = buffer + clusters[i][j].size();
8787
unsigned int end = offsets[i][j] + ((i * GPUCA_ROW_COUNT + j >= clustersCompressed->nSliceRows) ? 0 : clustersCompressed->nSliceRowClusters[i * GPUCA_ROW_COUNT + j]);
88-
decompressHits(clustersCompressed, offsets[i][j], end, cl);
88+
decompressHits(clustersCompressed, offsets[i][j], end, clout);
8989
if (param.rec.tpc.clustersShiftTimebins != 0.f) {
9090
for (unsigned int k = 0; k < clustersNative.nClusters[i][j]; k++) {
9191
auto& cl = buffer[k];

0 commit comments

Comments
 (0)