]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Declare the invalidateCursorsOnModifiedBtrees function to be static.
authordrh <drh@noemail.net>
Sat, 24 Nov 2007 10:23:44 +0000 (10:23 +0000)
committerdrh <drh@noemail.net>
Sat, 24 Nov 2007 10:23:44 +0000 (10:23 +0000)
Ticket #2792. (CVS 4559)

FossilOrigin-Name: 94f25fc1129c7fb8697a67e509ab9de54a173a58

manifest
manifest.uuid
src/vdbeaux.c

index 7e69d6041effa0223f37e143edf3775c0323e3cf..8ec70fa9167b37d1e919a3d495ad045a5daad5ff 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C The\sFTS3\samalgamation\scan\snow\sbe\sappended\sto\sthe\sSQLite\samalgamation\sto\ngenerate\sa\ssingle\ssource\sfile\sthat\scontains\sboth\scomponents.\s(CVS\s4558)
-D 2007-11-24T00:41:52
+C Declare\sthe\sinvalidateCursorsOnModifiedBtrees\sfunction\sto\sbe\sstatic.\nTicket\s#2792.\s(CVS\s4559)
+D 2007-11-24T10:23:45
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in 35396fd58890420b29edcf27b6c0e2d054862a6b
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -170,7 +170,7 @@ F src/vdbe.c 791d056da2c264c2cfed6e2150852926845875e5
 F src/vdbe.h 79e09ff13b85457abe437d9814454534ebbc1fe3
 F src/vdbeInt.h 630145b9bfaa19190ab491f52658a7db550f2247
 F src/vdbeapi.c dd2c43317294e0a013e9f634ee4209a3ea459b43
-F src/vdbeaux.c ffc2610c0d29a6e7b5c1d5dfea2ad406f7f9aff1
+F src/vdbeaux.c ecda6d92276c61aa9d8d4466444a980b7163827b
 F src/vdbeblob.c 82f51cdf9b0c0af729732fde48c824e498c0a1ca
 F src/vdbefifo.c 334c838c8f42d61a94813d136019ee566b5dc2f6
 F src/vdbemem.c 123994fcd344993d2fb050a83b91b341bbbd08b4
@@ -590,7 +590,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 8c0b2157f2a2f8ecfa641a041279faf21aedd4e0
-R cdfb152187a9296f913494eaf2c01ee9
+P 0fc61f99b54bd269fcc011f448b9b971e902cb01
+R a314c7a29cbfffced0c652613fe340e1
 U drh
-Z eba6c82b1c5d7dceb4b3e7cae88033fd
+Z ef78acb28db3ec4e15d6c19b7209bfc1
index 0bf1c4e0ed9c8b572eb59211cb09bd85c3092b3f..475fd0f03cc2315846e70306fea141aa906af893 100644 (file)
@@ -1 +1 @@
-0fc61f99b54bd269fcc011f448b9b971e902cb01
\ No newline at end of file
+94f25fc1129c7fb8697a67e509ab9de54a173a58
\ No newline at end of file
index a0a787415d97924058b8338dbdf69ed6246fdd47..080e8c2ef2d6628d740e978ca86847dff251cd21 100644 (file)
@@ -1323,7 +1323,7 @@ static void checkActiveVdbeCnt(sqlite3 *db){
 ** the state of the cursor.  We have to invalidate the cursor
 ** so that it is never used again.
 */
-void invalidateCursorsOnModifiedBtrees(sqlite3 *db){
+static void invalidateCursorsOnModifiedBtrees(sqlite3 *db){
   int i;
   for(i=0; i<db->nDb; i++){
     Btree *p = db->aDb[i].pBt;