Commit 529baf2b authored by Neal Norwitz's avatar Neal Norwitz

Fix compiler warning

parent 87482ea0
...@@ -64,6 +64,7 @@ typedef struct { ...@@ -64,6 +64,7 @@ typedef struct {
static PyTypeObject PySSL_Type; static PyTypeObject PySSL_Type;
static PyObject *PySSL_SSLwrite(PySSLObject *self, PyObject *args); static PyObject *PySSL_SSLwrite(PySSLObject *self, PyObject *args);
static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args); static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args);
static int wait_for_timeout(PySocketSockObject *s, int writing);
#define PySSLObject_Check(v) ((v)->ob_type == &PySSL_Type) #define PySSLObject_Check(v) ((v)->ob_type == &PySSL_Type)
......
...@@ -2916,7 +2916,7 @@ load_counted_long(Unpicklerobject *self, int size) ...@@ -2916,7 +2916,7 @@ load_counted_long(Unpicklerobject *self, int size)
along = PyLong_FromLong(0L); along = PyLong_FromLong(0L);
else { else {
/* Read the raw little-endian bytes & convert. */ /* Read the raw little-endian bytes & convert. */
i = self->read_func(self, &(char *)pdata, size); i = self->read_func(self, (char **)&pdata, size);
if (i < 0) return -1; if (i < 0) return -1;
along = _PyLong_FromByteArray(pdata, (size_t)size, along = _PyLong_FromByteArray(pdata, (size_t)size,
1 /* little endian */, 1 /* signed */); 1 /* little endian */, 1 /* signed */);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment