Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/public-domain/sqlite/dist use the constant definition



details:   https://anonhg.NetBSD.org/src/rev/f2bb8079a811
branches:  trunk
changeset: 326782:f2bb8079a811
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Feb 17 19:30:12 2014 +0000

description:
use the constant definition

diffstat:

 external/public-domain/sqlite/dist/sqlite3.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 8a5855b868e7 -r f2bb8079a811 external/public-domain/sqlite/dist/sqlite3.c
--- a/external/public-domain/sqlite/dist/sqlite3.c      Mon Feb 17 19:29:46 2014 +0000
+++ b/external/public-domain/sqlite/dist/sqlite3.c      Mon Feb 17 19:30:12 2014 +0000
@@ -22030,7 +22030,7 @@
         if( esign<0 ){
           result = 0.0*s;
         }else{
-          result = 1e308*1e308*s;  /* Infinity */
+          result = SQLITE_HUGE_DBL*SQLITE_HUGE_DBL*s;  /* Infinity */
         }
       }else
 #endif



Home | Main Index | Thread Index | Old Index