aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
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/sqliteInt.h
parent7a623e1d25f471394ac5550c6eac496ac70fbc1d (diff)
downloadsqlite-783e159e48979c551c204cbfe9c8f7dd4550d5e4.tar.gz
sqlite-783e159e48979c551c204cbfe9c8f7dd4550d5e4.zip
Fix harmless compiler warnings.
FossilOrigin-Name: 92dc59132f8547635d73c61c21ea29b380c401ddc84a6d01412808e00386b9e8
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index b01f32393..5ae69e873 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4584,7 +4584,7 @@ void sqlite3RenameExprlistUnmap(Parse*, ExprList*);
CollSeq *sqlite3GetCollSeq(Parse*, u8, CollSeq *, const char*);
char sqlite3AffinityType(const char*, Column*);
void sqlite3Analyze(Parse*, Token*, Token*);
-int sqlite3InvokeBusyHandler(BusyHandler*, sqlite3_file*);
+int sqlite3InvokeBusyHandler(BusyHandler*);
int sqlite3FindDb(sqlite3*, Token*);
int sqlite3FindDbName(sqlite3 *, const char *);
int sqlite3AnalysisLoad(sqlite3*,int iDB);