mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
Alexander Belopolsky pointed out that pos is a size_t
This commit is contained in:
parent
ab7e5ef695
commit
7b3c031790
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ static PyObject *
|
|||
mmap_tell_method(mmap_object *self, PyObject *unused)
|
||||
{
|
||||
CHECK_VALID(NULL);
|
||||
return PyInt_FromSsize_t(self->pos);
|
||||
return PyInt_FromSize_t(self->pos);
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue