From e92ac0a741b125f1cffe8c07b054d1dea7b0a05a Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Mon, 29 May 2023 17:31:03 +0900 Subject: Fix compiler warning in unicodeobject.c (#105050) --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index ec5684b..6f25f91 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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())); } -- cgit v0.12