From c1ec339acdcc3ce00fe507b306384d6de1733c01 Mon Sep 17 00:00:00 2001 From: Mikhail Galanin Date: Thu, 3 Aug 2023 14:25:27 +0100 Subject: [PATCH] Remove "const" as the value is actually changes --- imagick_class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagick_class.c b/imagick_class.c index ad88457d..1ef93bfe 100644 --- a/imagick_class.c +++ b/imagick_class.c @@ -712,7 +712,7 @@ PHP_METHOD(Imagick, getIteratorIndex) */ PHP_METHOD(Imagick, setIteratorIndex) { - const im_long index; + im_long index; MagickBooleanType status; php_imagick_object *intern;