From: Antony Dovgal Date: Thu, 21 Feb 2008 11:53:34 +0000 (+0000) Subject: ws->tab fixes X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~777 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe4e73238a9ba6c781420915d121ca4f51cf8644;p=php ws->tab fixes --- diff --git a/ext/standard/math.c b/ext/standard/math.c index ddd3541f97..3e3b45c100 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -471,14 +471,13 @@ PHP_FUNCTION(pow) Returns e raised to the power of the number */ PHP_FUNCTION(exp) { - double num; + double num; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &num) == FAILURE) { - return; - } - - RETURN_DOUBLE(exp(num)); + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &num) == FAILURE) { + return; + } + RETURN_DOUBLE(exp(num)); } /* }}} */