Skip to content

Commit a493da7

Browse files
authored
Fix typo in HAVE_ macro (#10310)
1 parent 2a5c03c commit a493da7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_call_stack.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ZEND_API bool zend_call_stack_get(zend_call_stack *stack);
4040
static zend_always_inline void *zend_call_stack_position(void) {
4141
#ifdef ZEND_WIN32
4242
return _AddressOfReturnAddress();
43-
#elif HAVE_BUILTIN_FRAME_ADDRESS
43+
#elif PHP_HAVE_BUILTIN_FRAME_ADDRESS
4444
return __builtin_frame_address(0);
4545
#else
4646
void *a;

0 commit comments

Comments
 (0)