Browse Source
Fix compiler warnings regarding loss of data (GH-23983)
pull/23987/head
Pablo Galindo
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
Modules/_sqlite/connection.c
-
Objects/unicodeobject.c
|
|
|
@ -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; |
|
|
|
|
|
|
|
|
|
|
|
@ -2302,7 +2302,7 @@ _PyUnicode_FromId(_Py_Identifier *id) |
|
|
|
PyInterpreterState *interp = _PyInterpreterState_GET(); |
|
|
|
struct _Py_unicode_ids *ids = &interp->unicode.ids; |
|
|
|
|
|
|
|
int index = _Py_atomic_size_get(&id->index); |
|
|
|
Py_ssize_t index = _Py_atomic_size_get(&id->index); |
|
|
|
if (index < 0) { |
|
|
|
struct _Py_unicode_runtime_ids *rt_ids = &interp->runtime->unicode_ids; |
|
|
|
|
|
|
|
|