From: Frank M. Kromann Date: Tue, 10 Dec 2002 19:28:04 +0000 (+0000) Subject: Fixing ZTS Build X-Git-Tag: RELEASE_1_0b3~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62fb872a4dcfd407083096f6b767f3459effa5de;p=php Fixing ZTS Build --- 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; }