Skip to content

Commit

Permalink
mlp - a copypaste gone wrong in the buffer selector. Fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpurschke committed Aug 29, 2024
1 parent dedba9a commit d1a925b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions newbasic/buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ int buffer::makeBuffer( PHDWORD *bp, const int allocatedsize, buffer **bptr)
return 0;
}

else if ( bp[1] == BUFFERMARKER
|| bp[1]== LZO1XBUFFERMARKER
else if ( bp[1]== LZO1XBUFFERMARKER
|| bp[1]== LZO1CBUFFERMARKER
|| bp[1]== LZO2ABUFFERMARKER
|| buffer::u4swap(bp[1]) == BUFFERMARKER
|| buffer::u4swap(bp[1])== LZO1XBUFFERMARKER
|| buffer::u4swap(bp[1])== LZO1CBUFFERMARKER
|| buffer::u4swap(bp[1])== LZO2ABUFFERMARKER )
Expand Down

0 comments on commit d1a925b

Please sign in to comment.