From: Sterling Hughes Date: Tue, 4 Sep 2001 06:20:23 +0000 (+0000) Subject: tabs -> spaces X-Git-Tag: PRE_SUBST_Z_MACROS~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e55315a3752ca70c1685b09cda37d5c509e7e7cf;p=php tabs -> spaces --- 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))); } /* }}} */