diff options
Diffstat (limited to 'ext/hash/hash_sha.c')
-rw-r--r-- | ext/hash/hash_sha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hash/hash_sha.c b/ext/hash/hash_sha.c index 003f05a774..19cedaf19e 100644 --- a/ext/hash/hash_sha.c +++ b/ext/hash/hash_sha.c @@ -95,7 +95,7 @@ PHP_FUNCTION(sha1) PHP_SHA1_CTX context; unsigned char digest[20]; - 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; } @@ -128,7 +128,7 @@ PHP_FUNCTION(sha1_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; } |