summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2002-12-10 19:28:04 +0000
committerFrank M. Kromann <fmk@php.net>2002-12-10 19:28:04 +0000
commit62fb872a4dcfd407083096f6b767f3459effa5de (patch)
tree7d330ee0d45244ab22e55ee214be97d3ed1ad463 /ext
parent51c9f2c64bf3f07c227de612c6d48e9b6c874b66 (diff)
downloadphp-git-62fb872a4dcfd407083096f6b767f3459effa5de.tar.gz
Fixing ZTS Build
Diffstat (limited to 'ext')
-rw-r--r--ext/bcmath/bcmath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c
index 00b266ff7b..7c78e91ed7 100644
--- a/ext/bcmath/bcmath.c
+++ b/ext/bcmath/bcmath.c
@@ -339,7 +339,7 @@ PHP_FUNCTION(bc_powmod)
bc_num first, second, mod, result;
int scale=bc_precision;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_C, "sss|l", &left, &left_len, &right, &right_len, &modulous, &modulous_len, &scale) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|l", &left, &left_len, &right, &right_len, &modulous, &modulous_len, &scale) == FAILURE) {
WRONG_PARAM_COUNT;
}