Skip to content

Commit bd8a3ee

Browse files
committed
streams: mark php_stream_error_create_array() as static
It's not exported in a header and only used in the file it is defined
1 parent edc169e commit bd8a3ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main/streams/stream_errors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static void php_stream_error_create_object(zval *zv, php_stream_error_entry *ent
6969
}
7070

7171
/* Create array of StreamError objects from error chain */
72-
PHPAPI void php_stream_error_create_array(zval *zv, php_stream_error_entry *first)
72+
static void php_stream_error_create_array(zval *zv, php_stream_error_entry *first)
7373
{
7474
array_init(zv);
7575

0 commit comments

Comments
 (0)