aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-09-23 10:16:04 +0000
committerdrh <drh@noemail.net>2008-09-23 10:16:04 +0000
commitc21658beaadb3ee1a9f6c0c81b71a72b3e026515 (patch)
tree762c48813ad29c27abc3021b91e34008fdab8bf9 /src
parent3e59c01255793616a636184cac57f2c6594cde74 (diff)
downloadsqlite-c21658beaadb3ee1a9f6c0c81b71a72b3e026515.tar.gz
sqlite-c21658beaadb3ee1a9f6c0c81b71a72b3e026515.zip
Remove an unused variable from the test logic. (CVS 5736)
FossilOrigin-Name: 309ba380d985d77419a6e185373493e043823258
Diffstat (limited to 'src')
-rw-r--r--src/test_config.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test_config.c b/src/test_config.c
index 8ec3ca5ee..aa4487d4b 100644
--- a/src/test_config.c
+++ b/src/test_config.c
@@ -16,7 +16,7 @@
** The focus of this file is providing the TCL testing layer
** access to compile-time constants.
**
-** $Id: test_config.c,v 1.36 2008/09/10 10:57:28 danielk1977 Exp $
+** $Id: test_config.c,v 1.37 2008/09/23 10:16:05 drh Exp $
*/
#include "sqliteLimit.h"
@@ -39,8 +39,6 @@
** procedures use this to determine when tests should be omitted.
*/
static void set_options(Tcl_Interp *interp){
- int rc = 0;
-
#ifdef SQLITE_32BIT_ROWID
Tcl_SetVar2(interp, "sqlite_options", "rowid32", "1", TCL_GLOBAL_ONLY);
#else