[Python-checkins] cpython: Fix compilation of select module on Solaris.

richard.oudkerk python-checkins at python.org
Thu Aug 22 14:05:36 CEST 2013


http://hg.python.org/cpython/rev/79e5be70221b
changeset:   85320:79e5be70221b
parent:      85318:956261a143eb
user:        Richard Oudkerk <shibturn at gmail.com>
date:        Thu Aug 22 13:04:23 2013 +0100
summary:
  Fix compilation of select module on Solaris.

files:
  Modules/selectmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -1023,7 +1023,7 @@
 }
 
 static int
-devpoll_internal_close(pyEpoll_Object *self)
+devpoll_internal_close(devpollObject *self)
 {
     int save_errno = 0;
     if (self->fd_devpoll >= 0) {

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list