Fix the amalgamation generator so that all non-API functions have file scope. (CVS 3958)
FossilOrigin-Name: e9f56ead0514f3eac75807ea710c1f035b8add4f
diff --git a/src/vdbeblob.c b/src/vdbeblob.c
index 8f52ca0..9d826c9 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 blobReadWrite(
+static int blobReadWrite(
sqlite3_blob *pBlob,
void *z,
int n,