Commit e32a19668 for imagemagick.org

commit e32a19668136c5f0b9cfd855eb05680e46bebcfd
Author: Juho Kuisma <kuisma.juho@gmail.com>
Date:   Wed Feb 25 23:08:22 2026 +0200

    Typo fix in coders/dng.c (#8580)

    Doesn't actually affect order of operations, but fixes an obvious typo.

diff --git a/coders/dng.c b/coders/dng.c
index 93af18fbd..ca91eb968 100644
--- a/coders/dng.c
+++ b/coders/dng.c
@@ -595,7 +595,7 @@ static Image *ReadDNGImage(const ImageInfo *image_info,ExceptionInfo *exception)
             SetPixelGreen(image,ScaleShortToQuantum(*p++),q);
             SetPixelBlue(image,ScaleShortToQuantum(*p++),q);
           }
-        if ((raw_image->colors) == 2 || (raw_image->colors > 3))
+        if ((raw_image->colors == 2) || (raw_image->colors > 3))
           SetPixelAlpha(image,ScaleShortToQuantum(*p++),q);
         q+=(ptrdiff_t) GetPixelChannels(image);
       }