From 131b4aedccbcebe0a227ac0f65fd7a779f46ebe9 Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Wed, 24 Aug 2022 12:14:59 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20(Paletter=20=E2=86=92=20Palette)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This also aligns the error message with upstream[1]. [1] --- ext/gd/libgd/gd_webp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/libgd/gd_webp.c b/ext/gd/libgd/gd_webp.c index a27398f1e491b..a0d8a0cf49f5c 100644 --- a/ext/gd/libgd/gd_webp.c +++ b/ext/gd/libgd/gd_webp.c @@ -113,7 +113,7 @@ void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quality) } if (!gdImageTrueColor(im)) { - zend_error(E_ERROR, "Paletter image not supported by webp"); + zend_error(E_ERROR, "Palette image not supported by webp"); return; }