]> granicus.if.org Git - php/commitdiff
Correct that name
authorMarcus Boerger <helly@php.net>
Fri, 26 Mar 2004 19:53:07 +0000 (19:53 +0000)
committerMarcus Boerger <helly@php.net>
Fri, 26 Mar 2004 19:53:07 +0000 (19:53 +0000)
ext/standard/basic_functions.c

index 90b4d5877623ff1dcfbae6525174f835dfeb8bf9..85292dcd3cfbe2b4dbd0c32bc5054fb90b7203f4 100644 (file)
@@ -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