diff options
Diffstat (limited to 'src/status.c')
-rw-r--r-- | src/status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/status.c b/src/status.c index 56ecdcdb3..a60a8535a 100644 --- a/src/status.c +++ b/src/status.c @@ -13,7 +13,7 @@ ** This module implements the sqlite3_status() interface and related ** functionality. ** -** $Id: status.c,v 1.6 2008/08/01 16:31:14 drh Exp $ +** $Id: status.c,v 1.7 2008/08/05 17:53:23 drh Exp $ */ #include "sqliteInt.h" @@ -21,8 +21,8 @@ ** Variables in which to record status information. */ static struct { - int nowValue[7]; /* Current value */ - int mxValue[7]; /* Maximum value */ + int nowValue[9]; /* Current value */ + int mxValue[9]; /* Maximum value */ } sqlite3Stat; |