diff options
author | Marcus Boerger <helly@php.net> | 2004-03-26 19:53:07 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-26 19:53:07 +0000 |
commit | 92d8c3d06e412ffeeb68e21f2d859067f1fc5cb1 (patch) | |
tree | 82d7553ccce3cab0eea441fddea667a386ebe4d9 | |
parent | 9a04c0f9561c85c9ca24fa733d2d0362ae32d188 (diff) | |
download | php-git-92d8c3d06e412ffeeb68e21f2d859067f1fc5cb1.tar.gz |
Correct that name
-rw-r--r-- | ext/standard/basic_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 90b4d58776..85292dcd3c 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -967,7 +967,7 @@ static double php_get_inf() { #if defined(__i386__) || defined(_X86_) || defined(ALPHA) || defined(_ALPHA) || defined(__alpha) double val; - ((php_uint32*)&val)[1] = PHP_DOUBLE_QUIET_INF_HIGH; + ((php_uint32*)&val)[1] = PHP_DOUBLE_INFINITY_HIGH; ((php_uint32*)&val)[0] = 0; return val; #else |