gh-89289: Fix compiler warning in _sqlite/connection.c (#92258)

This commit is contained in:
Erlend Egeberg Aasland 2022-05-03 14:21:56 -06:00 committed by GitHub
parent 3e6019cee5
commit d9ec553194
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}