mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-08-16 10:14:47 +03:00
fix typo
This commit is contained in:
parent
a451909ddb
commit
1dcfb3d796
|
@ -978,7 +978,7 @@ ImagingTransformAffine(
|
|||
if (xin >= 0 && xin < xsize) {
|
||||
yin = COORD(yy);
|
||||
if (yin >= 0 && yin < ysize) {
|
||||
UINT8T *in = (UINT8 *)imIn->image[yin];
|
||||
UINT8 *in = (UINT8 *)imIn->image[yin];
|
||||
for (b = 0; b < pixelsize; b++) {
|
||||
out[x * pixelsize + b] = in[xin * pixelsize + b];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user