Skip to content

Commit 0e33a88

Browse files
committed
Fix compiler warning
1 parent 0ff6d35 commit 0e33a88

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Detectors/TOF/base/src/Utils.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,8 @@ int Utils::extractNewTimeSlewing(const o2::dataformats::CalibTimeSlewingParamTOF
331331

332332
mTreeFit = new TChain("treeCollectedCalibInfo", "treeCollectedCalibInfo");
333333

334-
system("ls *collTOF*.root >listaCal"); // create list of calibInfo accumulated
334+
auto retval = system("ls *collTOF*.root >listaCal"); // create list of calibInfo accumulated
335+
(void)retval;
335336
FILE* f = fopen("listaCal", "r");
336337

337338
if (!f) { // no inputs -> return

0 commit comments

Comments
 (0)