1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Fix harmless compiler warnings in testing code.

FossilOrigin-Name: 2f53612388507f9b1ecbec3c15281825beab54b8062d97d0ab6f009c5fed347b
This commit is contained in:
drh
2022-10-28 18:52:05 +00:00
parent 71b65e88e8
commit 053bb22f35
6 changed files with 15 additions and 16 deletions

View File

@ -2261,7 +2261,7 @@ static int recoverVfsDetectPagesize(
}
}
}
if( pgsz>p->detected_pgsz ){
if( pgsz>(u32)p->detected_pgsz ){
p->detected_pgsz = pgsz;
p->nReserve = nReserve;
}