diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-05-07 15:15:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 16:15:01 +0300 |
commit | 0988ed09b4c058fabb58a7ea7e757adafcf8763c (patch) | |
tree | 64586bb167b52f0612a7d2202bf4d477aec3505a /Modules/_sqlite/util.h | |
parent | a0cb2e43029170fadb917ef3d9fc22c5e2e4e34b (diff) | |
download | cpython-git-0988ed09b4c058fabb58a7ea7e757adafcf8763c.tar.gz |
bpo-44047: Remove unused argument to _pysqlite_seterror (GH-25915)
Diffstat (limited to 'Modules/_sqlite/util.h')
-rw-r--r-- | Modules/_sqlite/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sqlite/util.h b/Modules/_sqlite/util.h index cff31cda95..82e58139d0 100644 --- a/Modules/_sqlite/util.h +++ b/Modules/_sqlite/util.h @@ -35,7 +35,7 @@ int pysqlite_step(sqlite3_stmt* statement, pysqlite_Connection* connection); * Checks the SQLite error code and sets the appropriate DB-API exception. * Returns the error code (0 means no error occurred). */ -int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st); +int _pysqlite_seterror(sqlite3 *db); sqlite_int64 _pysqlite_long_as_int64(PyObject * value); |