aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-07-14 01:09:08 +0000
committerdrh <drh@noemail.net>2016-07-14 01:09:08 +0000
commitfca760c841227207bb8dd0dd43fb89a100ca18fb (patch)
tree13645263d34c09ad8116e60f35fcc39fb0cf3a6d /src/sqliteInt.h
parent1637a5171f25bd6d5eb4e04dc855776c3af2c1da (diff)
downloadsqlite-fca760c841227207bb8dd0dd43fb89a100ca18fb.tar.gz
sqlite-fca760c841227207bb8dd0dd43fb89a100ca18fb.zip
Add the sqlite3_expanded_sql() interface. Refinements to the
sqlite3_trace_v2() interface to make it more useful. FossilOrigin-Name: 99ee7ee58d45b29a0000492306ddc0b90563ff51
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 225d7b287..0be494751 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1300,7 +1300,7 @@ struct sqlite3 {
int nVDestroy; /* Number of active OP_VDestroy operations */
int nExtension; /* Number of loaded extensions */
void **aExtension; /* Array of shared library handles */
- int (*xTrace)(u32,void*,void*,i64); /* Trace function */
+ int (*xTrace)(u32,void*,void*,void*); /* Trace function */
void *pTraceArg; /* Argument to the trace function */
void (*xProfile)(void*,const char*,u64); /* Profiling function */
void *pProfileArg; /* Argument to profile function */