Skip to content

Commit

Permalink
Fixed a small bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
al45tair committed Mar 13, 2014
1 parent 9a4bff7 commit aea0ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libImaging/Jpeg2KDecode.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ j2ku_graya_la(opj_image_t *in, const JPEG2KTILEINFO *tileinfo,

UINT8 byte = j2ku_shift(offset + word, shift);
row[0] = row[1] = row[2] = byte;
row[3] = (unsigned)(aoffset + aword) >> ashift;
row[3] = j2ku_shift(aoffset + aword, ashift);
row += 4;
}
}
Expand Down

0 comments on commit aea0ec5

Please sign in to comment.