Skip to content
Merged
Prev Previous commit
Next Next commit
Update Objects/unionobject.c
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
  • Loading branch information
uriyyo and Fidget-Spinner committed Jul 3, 2021
commit 8033e53ea44a77b2fe9c8ff52f82c6ef7cce754c
2 changes: 1 addition & 1 deletion Objects/unionobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ static PyMappingMethods union_as_mapping = {
};

static PyObject *
union_parameters(PyObject *self, void *unused)
union_parameters(PyObject *self, void *Py_UNUSED(unused))
{
unionobject *alias = (unionobject *)self;
if (alias->parameters == NULL) {
Expand Down