Skip to content

Commit

Permalink
Fix compiler warning in unicodeobject.c (python#105050)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed May 29, 2023
1 parent 595ffdd commit e92ac0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/unicodeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ static inline PyObject *get_interned_dict(PyInterpreterState *interp)
}

Py_ssize_t
_PyUnicode_InternedSize()
_PyUnicode_InternedSize(void)
{
return PyObject_Length(get_interned_dict(_PyInterpreterState_GET()));
}
Expand Down

0 comments on commit e92ac0a

Please sign in to comment.