Skip to content

Commit 09c3b6c

Browse files
committed
fixed "s" vs "S" for soundex
1 parent bda11c6 commit 09c3b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/soundex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ PHP_FUNCTION(soundex)
6161
0, /* Y */
6262
'2'}; /* Z */
6363

64-
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) {
64+
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "S", &str, &str_len) == FAILURE) {
6565
return;
6666
}
6767
if (str_len == 0) {

0 commit comments

Comments
 (0)