aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.c
diff options
context:
space:
mode:
authordan <dan@noemail.net>2010-06-02 05:53:53 +0000
committerdan <dan@noemail.net>2010-06-02 05:53:53 +0000
commit558814f8c6084d5a4e2abecf94af84d4eb7e99d3 (patch)
treea6e122060822d6b983b42c357e96453ad7f91f75 /src/analyze.c
parent8b3cf82ddfb6e7897a970b14cd4e76ae2ee71268 (diff)
downloadsqlite-558814f8c6084d5a4e2abecf94af84d4eb7e99d3.tar.gz
sqlite-558814f8c6084d5a4e2abecf94af84d4eb7e99d3.zip
Add some 'const' markers to static data that is really constant.
FossilOrigin-Name: e7073e23b80e7cae0c76d42f014ee9b2d40a8f2f
Diffstat (limited to 'src/analyze.c')
-rw-r--r--src/analyze.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.c b/src/analyze.c
index 72983412d..94cf3a39d 100644
--- a/src/analyze.c
+++ b/src/analyze.c
@@ -36,7 +36,7 @@ static void openStatTable(
int iStatCur, /* Open the sqlite_stat1 table on this cursor */
const char *zWhere /* Delete entries associated with this table */
){
- static struct {
+ static const struct {
const char *zName;
const char *zCols;
} aTable[] = {