]> granicus.if.org Git - php/commitdiff
fix grammar
authorAntony Dovgal <tony2001@php.net>
Wed, 17 Jan 2007 08:25:25 +0000 (08:25 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 17 Jan 2007 08:25:25 +0000 (08:25 +0000)
ext/standard/formatted_print.c
ext/sysvmsg/sysvmsg.c

index 7d6903bf449c62475a131e5bc448165268a28c1c..4a5a52411c50f065e69fd740b60b71bd913698c0 100644 (file)
@@ -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;
index 8867a25028ec7efd4012c5a8f924873bd9e257b8..c81754257d84949b0e8e173ffebcd4fa18f72a6f 100644 (file)
@@ -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;
        }