8000 Fix compiler warning in unicodeobject.c (#105050) · python/cpython@e92ac0a · GitHub
[go: up one dir, main page]

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

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)
0