diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8eae8d166..770aa7071 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4608,7 +4608,8 @@ struct FpDecode { char isSpecial; /* 1: Infinity 2: NaN */ int n; /* Significant digits in the decode */ int iDP; /* Location of the decimal point */ - char z[24]; /* Significiant digits */ + char *z; /* Start of significant digits */ + char zBuf[24]; /* Storage for significant digits */ }; void sqlite3FpDecode(FpDecode*,double,int,int); |