From: Antony Dovgal Date: Wed, 17 Jan 2007 08:25:25 +0000 (+0000) Subject: fix grammar X-Git-Tag: RELEASE_1_0_0RC1~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0c243ff68b3650ed95107e899f1f9230c540cb1;p=php fix grammar --- diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index 7d6903bf44..4a5a52411c 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -735,7 +735,7 @@ static char * php_formatted_print(int ht, int *len, int use_array, int format_of if (argnum <= 0) { efree(result); efree(args); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Argument number must be greater then zero."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Argument number must be greater than zero."); return NULL; } @@ -777,7 +777,7 @@ static char * php_formatted_print(int ht, int *len, int use_array, int format_of if ((width = php_sprintf_getnumber(format, &inpos)) < 0) { efree(result); efree(args); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Width must be greater then zero and less then %d.", INT_MAX); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Width must be greater than zero and less than %d.", INT_MAX); return NULL; } adjusting |= ADJ_WIDTH; @@ -794,7 +794,7 @@ static char * php_formatted_print(int ht, int *len, int use_array, int format_of if ((precision = php_sprintf_getnumber(format, &inpos)) < 0) { efree(result); efree(args); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Precision must be greater then zero and less then %d.", INT_MAX); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Precision must be greater than zero and less than %d.", INT_MAX); return NULL; } adjusting |= ADJ_PRECISION; diff --git a/ext/sysvmsg/sysvmsg.c b/ext/sysvmsg/sysvmsg.c index 8867a25028..c81754257d 100644 --- a/ext/sysvmsg/sysvmsg.c +++ b/ext/sysvmsg/sysvmsg.c @@ -288,7 +288,7 @@ PHP_FUNCTION(msg_receive) } if (maxsize <= 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "maximum size of the message has to be greater then zero"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "maximum size of the message has to be greater than zero"); return; }