]> granicus.if.org Git - php/commitdiff
ws->tab fixes
authorAntony Dovgal <tony2001@php.net>
Thu, 21 Feb 2008 11:53:34 +0000 (11:53 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 21 Feb 2008 11:53:34 +0000 (11:53 +0000)
ext/standard/math.c

index ddd3541f977dc8f858f8a7d20e3b880add5ffffa..3e3b45c10023a96c85f20bbf20d2f9b392f72bfe 100644 (file)
@@ -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));
 }
 /* }}} */