mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-89289: Fix compiler warning in _sqlite/connection.c (#92258)
This commit is contained in:
parent
3e6019cee5
commit
d9ec553194
1 changed files with 1 additions and 1 deletions
|
@ -289,7 +289,7 @@ error:
|
|||
// There are no statements or other SQLite objects attached to the
|
||||
// database, so sqlite3_close() should always return SQLITE_OK.
|
||||
rc = sqlite3_close(db);
|
||||
assert(rc == SQLITE_OK), rc;
|
||||
assert(rc == SQLITE_OK);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue