From acc281cdbb5fb8d2a802daa44bcde725c2679c1e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:59:58 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/_imaging.c | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/src/_imaging.c b/src/_imaging.c index 1268597a085..9d6b660b3e8 100644 --- a/src/_imaging.c +++ b/src/_imaging.c @@ -3851,10 +3851,8 @@ _compare_pixels( // Fortunately, all of the modes that have extra bytes in their pixels // use four bytes for their pixels. UINT32 mask = 0xffffffff; - if ( - !strcmp(mode, "RGB") || !strcmp(mode, "YCbCr") || - !strcmp(mode, "HSV") || !strcmp(mode, "LAB") - ) { + if (!strcmp(mode, "RGB") || !strcmp(mode, "YCbCr") || !strcmp(mode, "HSV") || + !strcmp(mode, "LAB")) { // These modes have three channels in four bytes, // so we have to ignore the last byte. #ifdef WORDS_BIGENDIAN @@ -3908,11 +3906,8 @@ image_richcompare(const ImagingObject *self, const PyObject *other, const int op const Imaging img_a = self->image; const Imaging img_b = ((ImagingObject *)other)->image; - if ( - strcmp(img_a->mode, img_b->mode) - || img_a->xsize != img_b->xsize - || img_a->ysize != img_b->ysize - ) { + if (strcmp(img_a->mode, img_b->mode) || img_a->xsize != img_b->xsize || + img_a->ysize != img_b->ysize) { if (op == Py_EQ) { Py_RETURN_FALSE; } else { @@ -3927,18 +3922,15 @@ image_richcompare(const ImagingObject *self, const PyObject *other, const int op const UINT8 *palette_b_data = palette_b->palette; const UINT8 **palette_a_data_ptr = &palette_a_data; const UINT8 **palette_b_data_ptr = &palette_b_data; - if ( - !palette_a || !palette_b - || palette_a->size != palette_b->size - || strcmp(palette_a->mode, palette_b->mode) - || _compare_pixels( + if (!palette_a || !palette_b || palette_a->size != palette_b->size || + strcmp(palette_a->mode, palette_b->mode) || + _compare_pixels( palette_a->mode, 1, palette_a->size * 4, palette_a_data_ptr, palette_b_data_ptr - ) - ) { + )) { if (op == Py_EQ) { Py_RETURN_FALSE; } else { @@ -3953,8 +3945,7 @@ image_richcompare(const ImagingObject *self, const PyObject *other, const int op img_a->linesize, (const UINT8 **)img_a->image, (const UINT8 **)img_b->image - ) - ) { + )) { if (op == Py_EQ) { Py_RETURN_FALSE; } else {