1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Fix harmless compiler warnings in the progress callback logic.

FossilOrigin-Name: 908141d5bf7a9ad8f40c2332476847733eca7fdc
This commit is contained in:
drh
2013-07-10 18:14:29 +00:00
parent 49afe3aaa0
commit 8f8c65f79b
4 changed files with 10 additions and 10 deletions

View File

@@ -936,7 +936,7 @@ struct sqlite3 {
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
int (*xProgress)(void *); /* The progress callback */
void *pProgressArg; /* Argument to the progress callback */
int nProgressOps; /* Number of opcodes for progress callback */
unsigned nProgressOps; /* Number of opcodes for progress callback */
#endif
#ifndef SQLITE_OMIT_VIRTUALTABLE
int nVTrans; /* Allocated size of aVTrans */