diff options
author | Sterling Hughes <sterling@php.net> | 2001-09-04 06:20:23 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-09-04 06:20:23 +0000 |
commit | e55315a3752ca70c1685b09cda37d5c509e7e7cf (patch) | |
tree | 9f2889757efbdf8f1c0f648448ba56de715a0f8f | |
parent | fe03f6f4c25734d63943f53a52749638710a979c (diff) | |
download | php-git-e55315a3752ca70c1685b09cda37d5c509e7e7cf.tar.gz |
tabs -> spaces
-rw-r--r-- | ext/standard/string.c | 4 |
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))); } /* }}} */ |