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

Fix trivial compiler warnings. (CVS 3295)

FossilOrigin-Name: 3538beace8ece6339fe8aaf40852ce5e5e7da283
This commit is contained in:
danielk1977
2006-06-26 11:17:50 +00:00
parent 605903f42e
commit a2e48b24c7
5 changed files with 14 additions and 14 deletions

View File

@@ -16,7 +16,7 @@
** The emphasis of this file is a virtual table that provides
** access to TCL variables.
**
** $Id: test_tclvar.c,v 1.3 2006/06/15 04:28:13 danielk1977 Exp $
** $Id: test_tclvar.c,v 1.4 2006/06/26 11:17:51 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "tcl.h"
@@ -136,6 +136,7 @@ static sqlite3_module tclvarModule = {
tclvarClose, /* xClose - close a cursor */
tclvarFilter, /* xFilter - configure scan constraints */
tclvarNext, /* xNext - advance a cursor */
0, /* xEof - check for end of scan */
tclvarColumn, /* xColumn - read data */
tclvarRowid /* xRowid - read data */
};