Skip to content

Commit 0b99017

Browse files
committed
Fix error message in ext/socket
1 parent 7ff8eaa commit 0b99017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/sockets/sendrecvmsg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ PHP_FUNCTION(socket_cmsg_space)
289289
LONG_CHECK_VALID_INT(n, 3);
290290

291291
if (n < 0) {
292-
zend_argument_value_error(3, "must be greater or equal than 0");
292+
zend_argument_value_error(3, "must be greater than or equal to 0");
293293
RETURN_THROWS();
294294
}
295295

0 commit comments

Comments
 (0)