Fix compiler warning

This commit is contained in:
Neal Norwitz 2003-02-02 17:08:33 +00:00
parent 87482ea055
commit 529baf2b57
2 changed files with 2 additions and 1 deletions

View file

@ -64,6 +64,7 @@ typedef struct {
static PyTypeObject PySSL_Type;
static PyObject *PySSL_SSLwrite(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)