1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix type in test_schema.c. (CVS 3258)

FossilOrigin-Name: d65d83d38321258a7bb8c38f4b2657650b0f1033
This commit is contained in:
danielk1977
2006-06-15 16:26:45 +00:00
parent 954ce99c62
commit dbf5a848c6
3 changed files with 9 additions and 9 deletions

View File

@@ -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"