aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeblob.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-05-08 20:37:38 +0000
committerdrh <drh@noemail.net>2007-05-08 20:37:38 +0000
commitee85813c941f49b62c5e5d6cbddc561e3b56a613 (patch)
tree622542ce5c3b57808819351cd0532e4c1fbf5659 /src/vdbeblob.c
parent52d19f65e36f08e662e971f47edbe039141f3c82 (diff)
downloadsqlite-ee85813c941f49b62c5e5d6cbddc561e3b56a613.tar.gz
sqlite-ee85813c941f49b62c5e5d6cbddc561e3b56a613.zip
Fix the amalgamation generator so that all non-API functions have file scope. (CVS 3958)
FossilOrigin-Name: e9f56ead0514f3eac75807ea710c1f035b8add4f
Diffstat (limited to 'src/vdbeblob.c')
-rw-r--r--src/vdbeblob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbeblob.c b/src/vdbeblob.c
index 8f52ca08d..9d826c989 100644
--- a/src/vdbeblob.c
+++ b/src/vdbeblob.c
@@ -12,7 +12,7 @@
**
** This file contains code used to implement incremental BLOB I/O.
**
-** $Id: vdbeblob.c,v 1.9 2007/05/05 18:39:25 drh Exp $
+** $Id: vdbeblob.c,v 1.10 2007/05/08 20:37:40 drh Exp $
*/
#include "sqliteInt.h"
@@ -247,7 +247,7 @@ int sqlite3_blob_close(sqlite3_blob *pBlob){
}
-int blobReadWrite(
+static int blobReadWrite(
sqlite3_blob *pBlob,
void *z,
int n,