1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix error message in ext/socket

This commit is contained in:
George Peter Banyard
2020-04-22 00:50:32 +02:00
parent 7ff8eaa545
commit 0b99017516

View File

@@ -289,7 +289,7 @@ PHP_FUNCTION(socket_cmsg_space)
LONG_CHECK_VALID_INT(n, 3);
if (n < 0) {
zend_argument_value_error(3, "must be greater or equal than 0");
zend_argument_value_error(3, "must be greater than or equal to 0");
RETURN_THROWS();
}