[Python-checkins] r60555 - python/trunk/Modules/posixmodule.c

christian.heimes python-checkins at python.org
Sun Feb 3 20:51:14 CET 2008


Author: christian.heimes
Date: Sun Feb  3 20:51:13 2008
New Revision: 60555

Modified:
   python/trunk/Modules/posixmodule.c
Log:
Another int -> pid_t case

Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Sun Feb  3 20:51:13 2008
@@ -6067,7 +6067,8 @@
 static PyObject *
 posix_tcgetpgrp(PyObject *self, PyObject *args)
 {
-	int fd, pgid;
+	int fd;
+	pid_t pgid;
 	if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
 		return NULL;
 	pgid = tcgetpgrp(fd);


More information about the Python-checkins mailing list