From db5df57c939ddc488a24befa2f63948402c64491 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Mon, 21 Jul 2014 08:34:30 +0900 Subject: [PATCH] removed unused local variables --- dbdimp.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dbdimp.c b/dbdimp.c index 3c73d54..1f1cd2a 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -2659,7 +2659,6 @@ static int perl_tokenizer_Next( perl_tokenizer_cursor *c = (perl_tokenizer_cursor *) pCursor; int result; int n_retval; - STRLEN n_a; char *token; char *byteOffset; I32 hop; @@ -2885,7 +2884,6 @@ static int perl_vt_New(const char *method, /* check the return value */ if (count != 1 ) { - int i; *pzErr = sqlite3_mprintf("vtab->VTAB_TO_DECLARE() should return one value, got %d", count ); SP -= count; /* Clear the stack */ @@ -3126,7 +3124,6 @@ static int perl_vt_Open(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ static int perl_vt_Close(sqlite3_vtab_cursor *pVtabCursor){ dTHX; dSP; - int count; perl_vtab_cursor *perl_pVTabCursor; ENTER; @@ -3181,7 +3178,7 @@ static int perl_vt_Filter( sqlite3_vtab_cursor *pVtabCursor, static int perl_vt_Next(sqlite3_vtab_cursor *pVtabCursor){ dTHX; dSP; - int i, count; + int count; ENTER; SAVETMPS;