From: aszostak Date: Wed, 14 May 2008 15:08:56 +0000 (+0000) Subject: Bug fix. There was a comma in a variable parameter list function that should not... X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=8bade2bec8390aae00fd06ca74b8f967c6d600f8;hp=30e1b274835a8c7f6e3d374b094bb7c3b95c87ea 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. --- 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()