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

Fix various harmless compiler warnings.

FossilOrigin-Name: 70049342d5ad57ea3e863bba19253934b868bacdd1c26c9371bac024a829badf
This commit is contained in:
drh
2022-02-04 13:15:01 +00:00
parent 02e3e04134
commit 69b0ce33fd
6 changed files with 14 additions and 14 deletions

View File

@@ -2666,7 +2666,7 @@ int sqlite3JsonTableFunctions(sqlite3 *db){
{ "json_each", &jsonEachModule },
{ "json_tree", &jsonTreeModule },
};
int i;
unsigned int i;
for(i=0; i<sizeof(aMod)/sizeof(aMod[0]) && rc==SQLITE_OK; i++){
rc = sqlite3_create_module(db, aMod[i].zName, aMod[i].pModule, 0);
}