Skip to content

Commit

Permalink
Fix compiler warning in unicodeobject.c (pythonGH-105050)
Browse files Browse the repository at this point in the history
(cherry picked from commit e92ac0a)

Co-authored-by: Inada Naoki <songofacandy@gmail.com>
  • Loading branch information
methane authored and miss-islington committed May 29, 2023
1 parent 74bbc60 commit 85c9d7d
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 85c9d7d

Please sign in to comment.