Skip to content

Commit ab671dd

Browse files
committed
Fix [-Wimplicit-fallthrough] warnings in SQLite3 extension
1 parent 52c6860 commit ab671dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/sqlite3/sqlite3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1810,7 +1810,7 @@ PHP_METHOD(SQLite3Stmt, execute)
18101810
}
18111811
case SQLITE_ERROR:
18121812
sqlite3_reset(stmt_obj->stmt);
1813-
1813+
fallthrough;
18141814
default:
18151815
if (!EG(exception)) {
18161816
php_sqlite3_error(stmt_obj->db_obj, "Unable to execute statement: %s", sqlite3_errmsg(sqlite3_db_handle(stmt_obj->stmt)));

0 commit comments

Comments
 (0)