Browse Source

Fix compiler warnings regarding loss of data (GH-23983)

pull/23987/head
Pablo Galindo 5 years ago
committed by GitHub
parent
commit
a6d63a20df
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Modules/_sqlite/connection.c
  2. 2
      Objects/unicodeobject.c

2
Modules/_sqlite/connection.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;

2
Objects/unicodeobject.c

@ -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;

Loading…
Cancel
Save