Skip to content

Commit 7fc90b6

Browse files
committed
Fixed indentation
1 parent 21d1862 commit 7fc90b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/string.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2382,7 +2382,7 @@ PHP_FUNCTION(str_iends) {
23822382
for (i = haystack->len - 1, j = needle->len - 1; j >= 0; i--, j--)
23832383
if (tolower(haystack->val[i]) != tolower(needle->val[j]))
23842384
RETURN_BOOL(0);
2385-
RETURN_BOOL(1);
2385+
RETURN_BOOL(1);
23862386
}
23872387

23882388
/* {{{ proto string|array|false substr_replace(mixed str, mixed repl, mixed start [, mixed length])

0 commit comments

Comments
 (0)