aboutsummaryrefslogtreecommitdiff
path: root/src/table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/table.c')
-rw-r--r--src/table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table.c b/src/table.c
index 9a46a13d8..27b6ab7b3 100644
--- a/src/table.c
+++ b/src/table.c
@@ -31,8 +31,8 @@ typedef struct TabResult {
static int sqlite_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
TabResult *p = (TabResult*)pArg;
int need;
- int i, len;
- char *z, *zVal;
+ int i;
+ char *z;
/* Make sure there is enough space in p->azResult to hold everything
** we need to remember from this invocation of the callback.