diff options
author | drh <drh@noemail.net> | 2016-07-14 01:09:08 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-07-14 01:09:08 +0000 |
commit | fca760c841227207bb8dd0dd43fb89a100ca18fb (patch) | |
tree | 13645263d34c09ad8116e60f35fcc39fb0cf3a6d /src/vdbeapi.c | |
parent | 1637a5171f25bd6d5eb4e04dc855776c3af2c1da (diff) | |
download | sqlite-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/vdbeapi.c')
-rw-r--r-- | src/vdbeapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c index a602fad38..883e5c95b 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c @@ -71,7 +71,7 @@ static SQLITE_NOINLINE void invokeProfileCallback(sqlite3 *db, Vdbe *p){ db->xProfile(db->pProfileArg, p->zSql, iElapse); } if( db->mTrace & SQLITE_TRACE_PROFILE ){ - db->xTrace(SQLITE_TRACE_PROFILE, db->pTraceArg, p, iElapse); + db->xTrace(SQLITE_TRACE_PROFILE, db->pTraceArg, p, (void*)&iElapse); } p->startTime = 0; } |