]> granicus.if.org Git - php/commitdiff
MFH: fix spelling and #35665
authorAntony Dovgal <tony2001@php.net>
Wed, 14 Dec 2005 00:54:29 +0000 (00:54 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 14 Dec 2005 00:54:29 +0000 (00:54 +0000)
ext/standard/string.c

index a03ebaa97a7cc83a650a1d8a4c2f55f3828d282a..9e796e42fb11d4474de84ae2bf61ee768e33f5ca 100644 (file)
@@ -4219,7 +4219,7 @@ PHP_FUNCTION(str_repeat)
        /* Initialize the result string */      
        result_len = Z_STRLEN_PP(input_str) * Z_LVAL_PP(mult);
        if (result_len < 1 || result_len > 2147483647) {
-               php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer then 2147483647 bytes");
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer than 2147483647 bytes");
                RETURN_FALSE;
        }
        result = (char *)emalloc(result_len + 1);