diff options
author | drh <> | 2023-07-01 17:56:00 +0000 |
---|---|---|
committer | drh <> | 2023-07-01 17:56:00 +0000 |
commit | 17c20bb15e5f51e12efd95fd3dc8806f939d8af8 (patch) | |
tree | ecd4c527d8768501cf79a1ef7be406996de46964 /src/sqliteInt.h | |
parent | 9ee9444a0adbf8f04081447d70d570f17c1a6e6a (diff) | |
download | sqlite-17c20bb15e5f51e12efd95fd3dc8806f939d8af8.tar.gz sqlite-17c20bb15e5f51e12efd95fd3dc8806f939d8af8.zip |
Improved rounding policy.
FossilOrigin-Name: 6f1122e942b8269552daaf13d647d200d8546ec25f36310d67037c6b58d09976
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 011a44bcb..5662ab4fd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4610,7 +4610,7 @@ struct FpDecode { char z[24]; /* Significiant digits */ }; -void sqlite3FpDecode(FpDecode*,double,int); +void sqlite3FpDecode(FpDecode*,double,int,int); char *sqlite3MPrintf(sqlite3*,const char*, ...); char *sqlite3VMPrintf(sqlite3*,const char*, va_list); #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) |