From 1dcfb3d796191094bbdee739b48742946511d87e Mon Sep 17 00:00:00 2001 From: Yay295 Date: Tue, 4 Oct 2022 08:47:37 -0500 Subject: [PATCH] fix typo --- src/libImaging/Geometry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libImaging/Geometry.c b/src/libImaging/Geometry.c index 0f37428fe..96f8373c7 100644 --- a/src/libImaging/Geometry.c +++ b/src/libImaging/Geometry.c @@ -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]; }