aboutsummaryrefslogtreecommitdiff
path: root/src/main.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/main.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/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 9f92bd6df..e4eb7fc12 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.375 2007/05/08 12:12:17 drh Exp $
+** $Id: main.c,v 1.376 2007/05/08 20:37:39 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -562,7 +562,7 @@ int sqlite3_create_function16(
char *zFunc8;
assert( !sqlite3MallocFailed() );
- zFunc8 = sqlite3utf16to8(zFunctionName, -1);
+ zFunc8 = sqlite3Utf16to8(zFunctionName, -1);
rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal);
sqliteFree(zFunc8);
@@ -1171,7 +1171,7 @@ int sqlite3_create_collation16(
int rc = SQLITE_OK;
char *zName8;
assert( !sqlite3MallocFailed() );
- zName8 = sqlite3utf16to8(zName, -1);
+ zName8 = sqlite3Utf16to8(zName, -1);
if( zName8 ){
rc = createCollation(db, zName8, enc, pCtx, xCompare, 0);
sqliteFree(zName8);