From d9ec55319422cf2ba8495b2b7859749d3d742291 Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Tue, 3 May 2022 14:21:56 -0600 Subject: gh-89289: Fix compiler warning in _sqlite/connection.c (#92258) --- Modules/_sqlite/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c index 793bc0b..333847f 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c @@ -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; } -- cgit v0.12