mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Issue #22: Clang compilation fix
This commit is contained in:
@ -2508,8 +2508,8 @@ void PDFJBIG2Decoder::processGenericRegion(const PDFJBIG2SegmentHeader& header)
|
||||
QByteArray endSequence(2, 0);
|
||||
if (!parameters.MMR)
|
||||
{
|
||||
endSequence[0] = unsigned char(0xFF);
|
||||
endSequence[1] = unsigned char(0xAC);
|
||||
endSequence[0] = (unsigned char)(0xFF);
|
||||
endSequence[1] = (unsigned char)(0xAC);
|
||||
}
|
||||
|
||||
int endPosition = stream->indexOf(endSequence);
|
||||
|
Reference in New Issue
Block a user