mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-14 09:14:45 +03:00
change loop increment to match others
Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
parent
4a889743b3
commit
1b53a02f7c
|
@ -418,7 +418,7 @@ unpackLAL(UINT8 *out, const UINT8 *in, int pixels) {
|
||||||
UINT8 *in1 = in;
|
UINT8 *in1 = in;
|
||||||
UINT8 *in2 = in + pixels;
|
UINT8 *in2 = in + pixels;
|
||||||
/* LA, line interleaved */
|
/* LA, line interleaved */
|
||||||
for (i = 0; i < pixels; ++i) {
|
for (i = 0; i < pixels; i++) {
|
||||||
*out++ = *in1++;
|
*out++ = *in1++;
|
||||||
*out++ = *in2++;
|
*out++ = *in2++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user