Remove an unused local variable.

This commit is contained in:
Brett Cannon 2007-11-06 23:14:42 +00:00
parent 98297ee781
commit c6f6008991
1 changed files with 0 additions and 1 deletions

View File

@ -88,7 +88,6 @@ int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObjec
const char* buffer;
char* string;
Py_ssize_t buflen;
PyObject* stringval;
if (parameter == Py_None) {
rc = sqlite3_bind_null(self->st, pos);