Commit bd8a3ee16fa for php.net
commit bd8a3ee16fa88565be7dd99a457ff372a8bec52b
Author: Gina Peter Banyard <girgias@php.net>
Date: Mon Jul 27 18:00:11 2026 +0100
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
diff --git a/main/streams/stream_errors.c b/main/streams/stream_errors.c
index b2dfdbb217a..9ee6127df77 100644
--- a/main/streams/stream_errors.c
+++ b/main/streams/stream_errors.c
@@ -69,7 +69,7 @@ static void php_stream_error_create_object(zval *zv, php_stream_error_entry *ent
}
/* Create array of StreamError objects from error chain */
-PHPAPI void php_stream_error_create_array(zval *zv, php_stream_error_entry *first)
+static void php_stream_error_create_array(zval *zv, php_stream_error_entry *first)
{
array_init(zv);