diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-03-02 06:24:19 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-03-02 06:24:19 +0000 |
commit | b4622b6075f44254040d8d4a35821eb381d68e9c (patch) | |
tree | aa41b95d1a8ee976ea04643bdd3f61440a8829de /src/sqliteInt.h | |
parent | 602c23746163abb8fa32e83dd6290e697d94a970 (diff) | |
download | sqlite-b4622b6075f44254040d8d4a35821eb381d68e9c.tar.gz sqlite-b4622b6075f44254040d8d4a35821eb381d68e9c.zip |
Minor fixes so that testfixture builds without IO tracing enabled. (CVS 3668)
FossilOrigin-Name: 8d3829cdb35f41bc7a2e6f945e9aa83987513104
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a25ca02a5..1d5f21a6e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.540 2007/03/01 00:29:14 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.541 2007/03/02 06:24:19 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1904,10 +1904,10 @@ int sqlite3Reprepare(Vdbe*); */ #ifdef SQLITE_ENABLE_IOTRACE # define IOTRACE(A) if( sqlite3_io_trace ){ sqlite3_io_trace A; } - void sqlite3VdbeIOTrace(Vdbe*); + void sqlite3VdbeIOTraceSql(Vdbe*); #else # define IOTRACE(A) -# define sqlite3VdbeIOTrace(X) +# define sqlite3VdbeIOTraceSql(X) #endif extern void (*sqlite3_io_trace)(const char*,...); |