Skip to content

Commit 5dc6b18

Browse files
Fix compiler warning in unicodeobject.c (GH-105050)
Fix compiler warning in unicodeobject.c (GH-105050) (cherry picked from commit e92ac0a) Co-authored-by: Inada Naoki <[email protected]>
1 parent 74bbc60 commit 5dc6b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ static inline PyObject *get_interned_dict(PyInterpreterState *interp)
236236
}
237237

238238
Py_ssize_t
239-
_PyUnicode_InternedSize()
239+
_PyUnicode_InternedSize(void)
240240
{
241241
return PyObject_Length(get_interned_dict(_PyInterpreterState_GET()));
242242
}

0 commit comments

Comments
 (0)