Skip to content

Commit 4072893

Browse files
committed
reset should have remained an int
1 parent 6d4ac41 commit 4072893

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/connection.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4696,7 +4696,8 @@ Connection_status(PyObject *self_, PyObject *const *fast_args, Py_ssize_t fast_n
46964696
{
46974697
Connection *self = (Connection *)self_;
46984698
int res, op;
4699-
sqlite3_int64 current = 0, highwater = 0, reset = 0;
4699+
sqlite3_int64 current = 0, highwater = 0;
4700+
int reset = 0;
47004701

47014702
CHECK_CLOSED(self, NULL);
47024703

0 commit comments

Comments
 (0)