diff options
author | drh <drh@noemail.net> | 2010-07-26 18:43:40 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-07-26 18:43:40 +0000 |
commit | eafc43b1569260e5ee1d0268cae7fa8ec619d7b8 (patch) | |
tree | 22c5baa7268f28dce01831872592a9dd26642fcc /src/status.c | |
parent | d2de9f4e6802d0f3c847a6f1dd5aa49a0eef70fb (diff) | |
download | sqlite-eafc43b1569260e5ee1d0268cae7fa8ec619d7b8.tar.gz sqlite-eafc43b1569260e5ee1d0268cae7fa8ec619d7b8.zip |
Add the SQLITE_STATUS_MALLOC_COUNT option for sqlite3_status().
FossilOrigin-Name: 8f8e442b3af553753e25c304efa289b626e3a227
Diffstat (limited to 'src/status.c')
-rw-r--r-- | src/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/status.c b/src/status.c index da908bbdc..6f141666e 100644 --- a/src/status.c +++ b/src/status.c @@ -21,8 +21,8 @@ */ typedef struct sqlite3StatType sqlite3StatType; static SQLITE_WSD struct sqlite3StatType { - int nowValue[9]; /* Current value */ - int mxValue[9]; /* Maximum value */ + int nowValue[10]; /* Current value */ + int mxValue[10]; /* Maximum value */ } sqlite3Stat = { {0,}, {0,} }; |