diff options
Diffstat (limited to 'ext/standard/soundex.c')
-rw-r--r-- | ext/standard/soundex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/soundex.c b/ext/standard/soundex.c index d882f5cab6..b9f89a8ac1 100644 --- a/ext/standard/soundex.c +++ b/ext/standard/soundex.c @@ -60,7 +60,7 @@ PHP_FUNCTION(soundex) 0, /* Y */ '2'}; /* Z */ - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &str, &str_len) == FAILURE) { return; } if (str_len == 0) { |