Skip to content

Commit e92ac0a

Browse files
authored
Fix compiler warning in unicodeobject.c (#105050)
1 parent 595ffdd commit e92ac0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

+1-1
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)