From 18c6dc76ebf6fe48cf4ac39e1d15c804a21034db Mon Sep 17 00:00:00 2001 From: richterm Date: Thu, 27 Oct 2011 07:38:47 +0000 Subject: [PATCH] correcting a typo in the error message for invalid RCU trailer and including some more information --- HLT/TPCLib/AliHLTTPCHWCFData.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HLT/TPCLib/AliHLTTPCHWCFData.cxx b/HLT/TPCLib/AliHLTTPCHWCFData.cxx index 576afd7ad4d..4ef197b7c9d 100644 --- a/HLT/TPCLib/AliHLTTPCHWCFData.cxx +++ b/HLT/TPCLib/AliHLTTPCHWCFData.cxx @@ -86,7 +86,7 @@ int AliHLTTPCHWCFData::Init(const AliHLTUInt8_t* pBuffer, int bufferSize) // check if the first RCU trailer word starts with pattern '10' rcuTrailer-=nofRCUTrailerWords-1; if ((*rcuTrailer >> 30) != 2) { - HLTError("inconsistent RCU trailer word: can not find indicator patter '10' in bit 30 and 31 (0x08x)", *rcuTrailer); + HLTError("inconsistent first RCU trailer word: can not find indicator pattern '10' in bit 31 and 30 (0x%08x): trailer size %d word(s), buffer size %d byte", *rcuTrailer, nofRCUTrailerWords, bufferSize); return -ENODATA; } -- 2.43.0