From: drh Date: Sat, 17 Jun 2006 10:44:42 +0000 (+0000) Subject: Clear a compiler warning by adding a prototype to sqliteInt.h. (CVS 3266) X-Git-Tag: version-3.6.10~2901 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=707205d1880b2d3f112d09741cb736a0da4c5489;p=thirdparty%2Fsqlite.git Clear a compiler warning by adding a prototype to sqliteInt.h. (CVS 3266) FossilOrigin-Name: ca541ef3c464c5627596a48ee7f1ec40948cf65d --- diff --git a/manifest b/manifest index 09e00a8758..b6a67c969f 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\stests\s(and\sfixes)\sfor\sthe\svirtual\stable\stransaction\sinterface.\s(CVS\s3265) -D 2006-06-17T09:39:56 +C Clear\sa\scompiler\swarning\sby\sadding\sa\sprototype\sto\ssqliteInt.h.\s(CVS\s3266) +D 2006-06-17T10:44:42 F Makefile.in f839b470345d3cb4b0644068474623fe2464b5d3 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 @@ -74,7 +74,7 @@ F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96 F src/shell.c ad73192b30a338a58fe81183d4a5d5a1d4e51d36 F src/sqlite.h.in 7855b46387f3f6ac1925301f450df9cbd7a1269b F src/sqlite3ext.h e334107f6cad0d00c0414e04189742a45ce916b1 -F src/sqliteInt.h dc69927751ee107aa5232e5c3aa7dd1d4329bb15 +F src/sqliteInt.h d79b031593462dfcbc8c122a5f698a00e6b124fa F src/table.c f64ec4fbfe333f8df925bc6ba494f55e05b0e75e F src/tclsqlite.c c408a49ae44525fc69757b4ed39f6ca0f56549a5 F src/test1.c 40f20775903bc76d3be3e7c026dddcbc221c1cb0 @@ -369,7 +369,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 -P 48d297c561b8d3d670ab425115ef50d1901523b6 -R 5211a47fbe9c7d890a08bd8b570a8a1d -U danielk1977 -Z 158058c4c02e6113c0e6c0e187c6e004 +P 8a5b121f2f26bebe3f1164bc2f504d29b74400f4 +R 401ddf160aa3c954727e040c555b14f8 +U drh +Z 98a57c00f7372ac68514301d821c7a26 diff --git a/manifest.uuid b/manifest.uuid index 7b9a9b7a83..17675d39e9 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -8a5b121f2f26bebe3f1164bc2f504d29b74400f4 \ No newline at end of file +ca541ef3c464c5627596a48ee7f1ec40948cf65d \ No newline at end of file diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a470260377..5a23d09b21 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.509 2006/06/16 21:13:22 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.510 2006/06/17 10:44:42 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1825,6 +1825,7 @@ void sqlite3CloseExtensions(sqlite3*); # define sqlite3VtabRollback(X) # define sqlite3VtabCommit(X) #else + void sqlite3VtabClear(Table*); void sqlite3VtabCodeLock(Parse *pParse, Table *pTab); int sqlite3VtabSync(sqlite3 *db, int rc); int sqlite3VtabRollback(sqlite3 *db);