mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Fix compiler warnings regarding loss of data (GH-23983)
This commit is contained in:
parent
290f5ae997
commit
a6d63a20df
2 changed files with 2 additions and 2 deletions
|
|
@ -1601,7 +1601,7 @@ pysqlite_connection_backup_impl(pysqlite_Connection *self,
|
|||
{
|
||||
int rc;
|
||||
int callback_error = 0;
|
||||
int sleep_ms = sleep * 1000.0;
|
||||
int sleep_ms = (int)(sleep * 1000.0);
|
||||
sqlite3 *bck_conn;
|
||||
sqlite3_backup *bck_handle;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue