Skip to content

Commit 7ad94a0

Browse files
committed
fix changed symbol
1 parent 23db1ce commit 7ad94a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/gd/libgd/gd_gd2.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,14 +345,14 @@ gdImagePtr gdImageCreateFromGd2Ctx (gdIOCtxPtr in)
345345
for (x = xlo; x < xhi; x++) {
346346
if (im->trueColor) {
347347
if (!gdGetInt(&im->tpixels[y][x], in)) {
348-
php_gd_error("gd2: EOF while reading\n");
348+
gd_error("gd2: EOF while reading\n");
349349
gdImageDestroy(im);
350350
return NULL;
351351
}
352352
} else {
353353
int ch;
354354
if (!gdGetByte(&ch, in)) {
355-
php_gd_error("gd2: EOF while reading\n");
355+
gd_error("gd2: EOF while reading\n");
356356
gdImageDestroy(im);
357357
return NULL;
358358
}

0 commit comments

Comments
 (0)