Skip to content

Commit a1626fc

Browse files
committed
Fix warning in Utilities/aliceHLTwrapper/src/Component.cxx
1 parent 008bcb2 commit a1626fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Utilities/aliceHLTwrapper/src/Component.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ int Component::process(vector<MessageFormat::BufferDesc_t>& dataArray,
322322
pOutputBlock->fOffset = 0;
323323

324324
// first search in the output buffer
325-
bValid = bValid || pStart >= pOutputBufferStart && pEnd <= pOutputBufferEnd;
325+
bValid = bValid || (pStart >= pOutputBufferStart && pEnd <= pOutputBufferEnd);
326326

327327
// possibly a forwarded data block, try the input buffers
328328
if (!bValid) {

0 commit comments

Comments
 (0)