summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-12-14 00:55:18 +0000
committerAntony Dovgal <tony2001@php.net>2005-12-14 00:55:18 +0000
commitaf26f3ac20385a6b474646a66aedaf3603615c4b (patch)
tree0e9deaccba7e0a7667b880d8b1a2c5b670b6f716
parenta542241b9573ac712cdb39e83da0f8c60e5a33f0 (diff)
downloadphp-git-af26f3ac20385a6b474646a66aedaf3603615c4b.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 01085d52c7..272654a3f3 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -4171,7 +4171,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);