diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-06-26 11:17:50 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-06-26 11:17:50 +0000 |
commit | a2e48b24c780350d224548b07bd267272e90fa49 (patch) | |
tree | 32c00ff09fe9c0e50e116dff55fc84f8ba0798bd /src/test_tclvar.c | |
parent | 605903f42e89bd585a536c4d8c0602ed667760f4 (diff) | |
download | sqlite-a2e48b24c780350d224548b07bd267272e90fa49.tar.gz sqlite-a2e48b24c780350d224548b07bd267272e90fa49.zip |
Fix trivial compiler warnings. (CVS 3295)
FossilOrigin-Name: 3538beace8ece6339fe8aaf40852ce5e5e7da283
Diffstat (limited to 'src/test_tclvar.c')
-rw-r--r-- | src/test_tclvar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test_tclvar.c b/src/test_tclvar.c index daa86e780..d92100a28 100644 --- a/src/test_tclvar.c +++ b/src/test_tclvar.c @@ -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 */ }; |