diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-24 11:33:13 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-02-24 11:33:13 +0100 |
commit | 3da9fc86d1651e857a6b1907e093a7d485a399ba (patch) | |
tree | 126ba5330bafd3b0a1c7212a5ab978e3c0d492b2 | |
parent | 2fce5d6494376a5b082a6181af2db8af683d2a2e (diff) | |
parent | 8c396e0e88527393cebc8194d9a5e30f0c4429c9 (diff) | |
download | php-git-3da9fc86d1651e857a6b1907e093a7d485a399ba.tar.gz |
Merge branch 'PHP-7.2'
* PHP-7.2:
Fix imagesetinterpolation arginfo
-rw-r--r-- | ext/gd/gd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index fd9086e588..30b91e4c6e 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -848,7 +848,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_imageaffinematrixconcat, 0) ZEND_ARG_INFO(0, m2) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(arginfo_imagesetinterpolation, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_imagesetinterpolation, 0, 0, 1) ZEND_ARG_INFO(0, im) ZEND_ARG_INFO(0, method) ZEND_END_ARG_INFO() |