summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-12-14 00:54:29 +0000
committerAntony Dovgal <tony2001@php.net>2005-12-14 00:54:29 +0000
commit1b7e3fe2a5416b60cc093458dd0bfcfd580c52f1 (patch)
tree6d980793aa27a2526e8cabbc317223234d133deb
parent71c7cdb7d9867ac68ad1a211b4629cd0f7cf2923 (diff)
downloadphp-git-1b7e3fe2a5416b60cc093458dd0bfcfd580c52f1.tar.gz
MFH: fix spelling and #35665
-rw-r--r--ext/standard/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c
index a03ebaa97a..9e796e42fb 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -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);