summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/standard/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c
index 23a7b5c8c4..d5321627cc 100644
--- a/ext/standard/string.c
+++ b/ext/standard/string.c
@@ -223,8 +223,8 @@ PHP_FUNCTION(strcspn)
convert_to_string_ex(s2);
RETURN_LONG(php_strcspn(Z_STRVAL_PP(s1), Z_STRVAL_PP(s2),
- Z_STRVAL_PP(s1) + Z_STRLEN_PP(s1),
- Z_STRVAL_PP(s2) + Z_STRLEN_PP(s2)));
+ Z_STRVAL_PP(s1) + Z_STRLEN_PP(s1),
+ Z_STRVAL_PP(s2) + Z_STRLEN_PP(s2)));
}
/* }}} */