diff options
Diffstat (limited to 'ext/hash/hash_md.c')
| -rw-r--r-- | ext/hash/hash_md.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hash/hash_md.c b/ext/hash/hash_md.c index 98891f3b77..ddef755cb4 100644 --- a/ext/hash/hash_md.c +++ b/ext/hash/hash_md.c @@ -112,7 +112,7 @@ PHP_NAMED_FUNCTION(php_if_md5) PHP_MD5_CTX context; unsigned char digest[16]; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &arg, &arg_len, &raw_output) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &arg, &arg_len, &raw_output) == FAILURE) { return; } @@ -144,7 +144,7 @@ PHP_NAMED_FUNCTION(php_if_md5_file) int n; php_stream *stream; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|b", &arg, &arg_len, &raw_output) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|b", &arg, &arg_len, &raw_output) == FAILURE) { return; } |
