From: richterm Date: Fri, 16 Nov 2007 10:23:41 +0000 (+0000) Subject: bugfix: compilation error after arturs changes X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=17e6313ad8eddd17a612538cb9c2fca7d06b533e;p=u%2Fmrichter%2FAliRoot.git bugfix: compilation error after arturs changes --- diff --git a/HLT/BASE/AliHLTDataBuffer.cxx b/HLT/BASE/AliHLTDataBuffer.cxx index 6dad725469f..4503d842a6a 100644 --- a/HLT/BASE/AliHLTDataBuffer.cxx +++ b/HLT/BASE/AliHLTDataBuffer.cxx @@ -471,7 +471,7 @@ AliHLTDataBuffer::AliHLTRawBuffer* AliHLTDataBuffer::CreateRawBuffer(AliHLTUInt3 } if (pRawBuffer!=NULL && fgkSafetyPatternSize>0) { //fgLogging.Logging(kHLTLogDebug, "AliHLTDataBuffer::CreateRawBuffer", "data buffer handling", "writing safety pattern to %p offset %d", (*buffer)->GetPointer(), (*buffer)->GetUsedSize()); - //int res=pRawBuffer->WritePattern(fgkSafetyPattern, fgkSafetyPatternSize); + int res=pRawBuffer->WritePattern(fgkSafetyPattern, fgkSafetyPatternSize); assert(res>=0); } return pRawBuffer;