From 62fb872a4dcfd407083096f6b767f3459effa5de Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Tue, 10 Dec 2002 19:28:04 +0000 Subject: [PATCH] Fixing ZTS Build --- ext/bcmath/bcmath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1