From dc45451761bead5df735215704bc20bf875db7c2 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Tue, 3 May 2022 13:50:51 -0600 Subject: [PATCH] gh-89289: Fix GHA annotation complaint for sqlite3 --- 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 793bc0b6aef0db..333847f0fafb96 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c @@ -289,7 +289,7 @@ pysqlite_connection_init_impl(pysqlite_Connection *self, // 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; }