summaryrefslogtreecommitdiff
path: root/ext/gd
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2019-05-27 17:21:28 -0700
committerStanislav Malyshev <stas@php.net>2019-05-27 17:21:28 -0700
commit892a188fc9d17ad88a74474ea755c4f4c657916a (patch)
treea98e8f8200593efd0c01f00327759fe3ef93c958 /ext/gd
parent5e3dc08826ae7f105249e4b30fdf2211ec989b79 (diff)
parente63b2ba310cc5104481e6fc5e8210121f7d45b2c (diff)
downloadphp-git-892a188fc9d17ad88a74474ea755c4f4c657916a.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix function name
Diffstat (limited to 'ext/gd')
-rw-r--r--ext/gd/libgd/gd_xbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/libgd/gd_xbm.c b/ext/gd/libgd/gd_xbm.c
index 70d9b41057..dae2e62152 100644
--- a/ext/gd/libgd/gd_xbm.c
+++ b/ext/gd/libgd/gd_xbm.c
@@ -137,7 +137,7 @@ gdImagePtr gdImageCreateFromXbm(FILE * fd)
h[3] = ch;
}
if (sscanf(h, "%x", &b) != 1) {
- php_gd_error("invalid XBM");
+ gd_error("invalid XBM");
gdImageDestroy(im);
return 0;
}