From 0aed4e16d1a5ed71ad77964e5cc8fd450eb21e65 Mon Sep 17 00:00:00 2001 From: Cristy Date: Thu, 1 Jan 2026 07:26:01 -0500 Subject: [PATCH] cosmetic --- coders/tiff.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/coders/tiff.c b/coders/tiff.c index 1547b37f34..4b3ac5284d 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -2008,9 +2008,6 @@ static Image *ReadTIFFImage(const ImageInfo *image_info, } case ReadTileMethod: { - unsigned char - *p; - size_t extent, length; @@ -2026,6 +2023,7 @@ static Image *ReadTIFFImage(const ImageInfo *image_info, rows; unsigned char + *p, *tile_pixels; /* @@ -2114,7 +2112,7 @@ static Image *ReadTIFFImage(const ImageInfo *image_info, if ((x+(ssize_t) columns) < (ssize_t) image->columns) columns_remaining=columns; size=TIFFReadTile(tiff,tile_pixels,(uint32_t) x,(uint32_t) y, - 0,(uint16_t)i); + 0,(uint16_t) i); if (size == -1) break; p=tile_pixels;