removed unused C variable

This commit is contained in:
Tal Einat 2014-05-11 02:46:43 +03:00
parent 76ee4e0715
commit 3618dc07fe
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ substitutions_only_has_near_matches_ngrams_byteslike(PyObject *self, PyObject *a
const char *match_ptr, *seq_ptr, *subseq_ptr, *subseq_end;
int *kmpNext;
struct KMPstate kmp_state;
int n_differences, i;
int n_differences;
if (!PyArg_ParseTuple(
args, "s#s#i",