Skip to content

Commit e1a4090

Browse files
committed
phpGH-10141: Fix typo
In configure.ac check for function strerror_r defines constant HAVE_STRERROR_R.
1 parent 4986419 commit e1a4090

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@ ZEND_API ZEND_COLD ZEND_NORETURN void zend_error_noreturn(int type, const char *
16391639

16401640
ZEND_API ZEND_COLD ZEND_NORETURN void zend_strerror_noreturn(int type, int errn, const char *message)
16411641
{
1642-
#ifdef HAVE_STR_ERROR_R
1642+
#ifdef HAVE_STRERROR_R
16431643
char buf[1024];
16441644
strerror_r(errn, buf, sizeof(buf));
16451645
#else

0 commit comments

Comments
 (0)