From 299713313ae80e62f62d1b83fa35bb9a9c4b0b84 Mon Sep 17 00:00:00 2001 From: Arjen Nienhuis Date: Mon, 8 Aug 2016 00:09:55 +0200 Subject: [PATCH] Fixed whitespace issue --- libImaging/Pack.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libImaging/Pack.c b/libImaging/Pack.c index acbfc8143..a19252e88 100644 --- a/libImaging/Pack.c +++ b/libImaging/Pack.c @@ -325,12 +325,12 @@ ImagingPackBGRa(UINT8* out, const UINT8* in, int pixels) int i; /* BGRa, reversed bytes with premultiplied alplha */ for (i = 0; i < pixels; i++) { - int alpha = out[3] = in[A]; - int tmp; - out[0] = MULDIV255(in[B], alpha, tmp); - out[1] = MULDIV255(in[G], alpha, tmp); - out[2] = MULDIV255(in[R], alpha, tmp); - out += 4; in += 4; + int alpha = out[3] = in[A]; + int tmp; + out[0] = MULDIV255(in[B], alpha, tmp); + out[1] = MULDIV255(in[G], alpha, tmp); + out[2] = MULDIV255(in[R], alpha, tmp); + out += 4; in += 4; } }