1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +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

@ -311,7 +311,7 @@ foreach name $allnames {
# Generate the lookup table
#
puts "static const struct sPragmaNames \173"
puts " const char const *zName; /* Name of pragma */"
puts " const char *const zName; /* Name of pragma */"
puts " u8 ePragTyp; /* PragTyp_XXX value */"
puts " u32 iArg; /* Extra argument */"
puts "\175 aPragmaNames\[\] = \173"