aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-05-06 20:55:38 +0000
committerdrh <drh@noemail.net>2020-05-06 20:55:38 +0000
commit783e159e48979c551c204cbfe9c8f7dd4550d5e4 (patch)
tree9f080ece2c1af2138a3ab7c621752efa966999e6 /src/main.c
parent7a623e1d25f471394ac5550c6eac496ac70fbc1d (diff)
downloadsqlite-783e159e48979c551c204cbfe9c8f7dd4550d5e4.tar.gz
sqlite-783e159e48979c551c204cbfe9c8f7dd4550d5e4.zip
Fix harmless compiler warnings.
FossilOrigin-Name: 92dc59132f8547635d73c61c21ea29b380c401ddc84a6d01412808e00386b9e8
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 0bc8edfec..83ba434be 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1664,7 +1664,7 @@ static int sqliteDefaultBusyCallback(
** If this routine returns non-zero, the lock is retried. If it
** returns 0, the operation aborts with an SQLITE_BUSY error.
*/
-int sqlite3InvokeBusyHandler(BusyHandler *p, sqlite3_file *pFile){
+int sqlite3InvokeBusyHandler(BusyHandler *p){
int rc;
if( p->xBusyHandler==0 || p->nBusy<0 ) return 0;
rc = p->xBusyHandler(p->pBusyArg, p->nBusy);