diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-06-15 16:26:45 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-06-15 16:26:45 +0000 |
commit | dbf5a848c674360d19ff8c2d82808a49d44d339a (patch) | |
tree | e01276e1ceb5be0536aecef2ac2f46de63b5a56b /src | |
parent | 954ce99c625f721c508c708f6c9003b0b10d0669 (diff) | |
download | sqlite-dbf5a848c674360d19ff8c2d82808a49d44d339a.tar.gz sqlite-dbf5a848c674360d19ff8c2d82808a49d44d339a.zip |
Fix type in test_schema.c. (CVS 3258)
FossilOrigin-Name: d65d83d38321258a7bb8c38f4b2657650b0f1033
Diffstat (limited to 'src')
-rw-r--r-- | src/test_schema.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test_schema.c b/src/test_schema.c index 85a75f1f4..e5da4f4d4 100644 --- a/src/test_schema.c +++ b/src/test_schema.c @@ -13,7 +13,7 @@ ** is not included in the SQLite library. It is used for automated ** testing of the SQLite library. ** -** $Id: test_schema.c,v 1.1 2006/06/15 15:59:20 danielk1977 Exp $ +** $Id: test_schema.c,v 1.2 2006/06/15 16:26:45 danielk1977 Exp $ */ /* The code in this file defines a sqlite3 module that provides @@ -39,7 +39,7 @@ #ifdef SQLITE_TEST #include "sqliteInt.h" #include "tcl.h" - #define MALLOC(x) sqliteRawMalloc(x) + #define MALLOC(x) sqliteMallocRaw(x) #define FREE(x) sqliteFree(x) #else #include "sqlite3ext.h" |