change loop increment to match others

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
Yay295 2022-09-25 22:17:38 -05:00 committed by GitHub
parent 4a889743b3
commit 1b53a02f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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++;
} }