Skip to content

Commit 82e1f5e

Browse files
author
Erlend E. Aasland
committed
Fix merge
1 parent 9045fa4 commit 82e1f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_sqlite/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ pysqlite_connection_init_impl(pysqlite_Connection *self,
208208
}
209209

210210
// Create LRU statement cache; returns a new reference.
211-
PyObject *statement_cache = new_statement_cache(self, cached_statements);
211+
PyObject *statement_cache = new_statement_cache(self, state, cache_size);
212212
if (statement_cache == NULL) {
213213
return -1;
214214
}

0 commit comments

Comments
 (0)