summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2019-05-27 17:20:56 -0700
committerRemi Collet <remi@php.net>2019-05-29 08:44:28 +0200
commitef2d071ad147f0e13630c464925900da771abd74 (patch)
tree20def3c47b893943796f65d491b4068f782eab4b
parent3c0614f3256f90ab524567673c5bc80c8c9988d2 (diff)
downloadphp-git-ef2d071ad147f0e13630c464925900da771abd74.tar.gz
Fix function name
-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 b73073279f..58b1b1bf5d 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;
}