From a32c489d17c536ea67f2ab0dce37e5ba26686192 Mon Sep 17 00:00:00 2001 From: Charlie Lin Date: Wed, 13 May 2026 19:47:54 -0400 Subject: [PATCH] Update object.rs --- pyo3-ffi/src/cpython/object.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyo3-ffi/src/cpython/object.rs b/pyo3-ffi/src/cpython/object.rs index 8a7ce069cc8..60f85727994 100644 --- a/pyo3-ffi/src/cpython/object.rs +++ b/pyo3-ffi/src/cpython/object.rs @@ -409,7 +409,7 @@ extern_libpython! { pub fn PyUnstable_TryIncRef(obj: *mut PyObject) -> c_int; - pub fn PyUnstable_EnableTryIncRef(obj: *mut PyObject) -> c_void; + pub fn PyUnstable_EnableTryIncRef(obj: *mut PyObject); pub fn PyUnstable_Object_IsUniquelyReferenced(op: *mut PyObject) -> c_int; }