Another int -> pid_t case
This commit is contained in:
parent
c4b7d4e810
commit
e6a8074892
|
@ -6067,7 +6067,8 @@ Return the process group associated with the terminal given by a fd.");
|
||||||
static PyObject *
|
static PyObject *
|
||||||
posix_tcgetpgrp(PyObject *self, PyObject *args)
|
posix_tcgetpgrp(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
int fd, pgid;
|
int fd;
|
||||||
|
pid_t pgid;
|
||||||
if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
|
if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
|
||||||
return NULL;
|
return NULL;
|
||||||
pgid = tcgetpgrp(fd);
|
pgid = tcgetpgrp(fd);
|
||||||
|
|
Loading…
Reference in New Issue