Alexander Belopolsky pointed out that pos is a size_t
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index b8dd02d..091ecd6 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -470,7 +470,7 @@
 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 *