Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
picnixz authored Feb 22, 2025
commit 04e1c7b46abb41893821716cc8337650ae922bae
2 changes: 1 addition & 1 deletion Modules/mmapmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ mmap__repr__method(PyObject *op)

#ifdef MS_WINDOWS
static PyObject *
mmap__sizeof__method(PyObject *op, PyObject *Py_UNUSED(ignored))
mmap__sizeof__method(PyObject *op, PyObject *Py_UNUSED(dummy))
{
mmap_object *self = mmap_object_CAST(op);
size_t res = _PyObject_SIZE(Py_TYPE(self));
Expand Down