From 8bade2bec8390aae00fd06ca74b8f967c6d600f8 Mon Sep 17 00:00:00 2001 From: aszostak Date: Wed, 14 May 2008 15:08:56 +0000 Subject: [PATCH] Bug fix. There was a comma in a variable parameter list function that should not be there. Would have caused run time crashes in some rare cases. --- HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx b/HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx index 500b32a9483..656e7a71f61 100644 --- a/HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx +++ b/HLT/MUON/OnlineAnalysis/AliHLTMUONHitReconstructorComponent.cxx @@ -385,7 +385,7 @@ int AliHLTMUONHitReconstructorComponent::DoEvent( AliHLTMUONRecHitsBlockWriter block(outputPtr+totalSize, size-totalSize); if (not block.InitCommonHeader()) { - HLTError("There is not enough space in the output buffer for the new data block.", + HLTError("There is not enough space in the output buffer for the new data block." " We require at least %u bytes, but have %u bytes left.", sizeof(AliHLTMUONRecHitsBlockWriter::HeaderType), block.BufferSize() -- 2.31.1