Skip to content

Commit 1f9935b

Browse files
committed
ext/ffi: make zend_ffi_types static
1 parent 17aea74 commit 1f9935b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/ffi/ffi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5538,7 +5538,7 @@ static const zend_ffi_type zend_ffi_type_long_double = {.kind=ZEND_FFI_TYPE_LONG
55385538

55395539
static const zend_ffi_type zend_ffi_type_ptr = {.kind=ZEND_FFI_TYPE_POINTER, .size=sizeof(void*), .align=_Alignof(void*), .pointer.type = (zend_ffi_type*)&zend_ffi_type_void};
55405540

5541-
const struct {
5541+
static const struct {
55425542
const char *name;
55435543
const zend_ffi_type *type;
55445544
} zend_ffi_types[] = {

0 commit comments

Comments
 (0)