Skip to content

Commit 750c220

Browse files
committed
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: fastcgi: Fix compile warning wrt safe_read() (#20887)
2 parents fb7a571 + 60b1f59 commit 750c220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/fastcgi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ static inline ssize_t safe_write(fcgi_request *req, const void *buf, size_t coun
944944
return n;
945945
}
946946

947-
static inline ssize_t safe_read(fcgi_request *req, const void *buf, size_t count)
947+
static inline ssize_t safe_read(fcgi_request *req, void *buf, size_t count)
948948
{
949949
int ret;
950950
size_t n = 0;

0 commit comments

Comments
 (0)