Skip to content

Commit

Permalink
Touch variable to avoid -Werror=unused-parameter error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danack committed Jul 1, 2024
1 parent 3c7efab commit 88d1b40
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions imagick_class.c
Original file line number Diff line number Diff line change
Expand Up @@ -13067,6 +13067,7 @@ PHP_METHOD(Imagick, getImageMask)
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pixelmask_type) == FAILURE) {
RETURN_THROWS();
}
(void)return_value; // fix -Werror=unused-parameter

intern = Z_IMAGICK_P(getThis());
IMAGICK_NOT_EMPTY(intern);
Expand Down

0 comments on commit 88d1b40

Please sign in to comment.