1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix the "const" qualifiers on the pragma name table.

FossilOrigin-Name: b74e6be818fa7d19f1af6d86ad1d2ecba334b01b
This commit is contained in:
drh
2013-09-13 21:03:45 +00:00
parent 55e85ca5f5
commit 77ff23f9c7
4 changed files with 10 additions and 10 deletions

View File

@@ -69,7 +69,7 @@
#define PragTyp_LOCK_STATUS 38
#define PragTyp_PARSER_TRACE 39
static const struct sPragmaNames {
const char const *zName; /* Name of pragma */
const char *const zName; /* Name of pragma */
u8 ePragTyp; /* PragTyp_XXX value */
u32 iArg; /* Extra argument */
} aPragmaNames[] = {