mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Fix a parameter misordering on sqlite3_trace_v2() in the loadable extension
interface. FossilOrigin-Name: 989de2d5b5e7155654d3eebadb9651b23f422c58
This commit is contained in:
@@ -282,7 +282,7 @@ struct sqlite3_api_routines {
|
||||
/* Version 3.12.0 and later */
|
||||
int (*system_errno)(sqlite3*);
|
||||
/* Version 3.14.0 and later */
|
||||
int (*trace_v2)(sqlite3*,int(*)(unsigned,void*,void*,void*),unsigned,void*);
|
||||
int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*);
|
||||
char *(*expanded_sql)(sqlite3_stmt*);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user