Skip to content

Commit da7723f

Browse files
authored
Update object.rs
1 parent 6133810 commit da7723f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyo3-ffi/src/object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ pub unsafe fn Py_IS_TYPE(ob: *mut PyObject, tp: *mut PyTypeObject) -> c_int {
247247

248248
#[inline]
249249
#[cfg(not(all(Py_LIMITED_API, Py_3_15)))]
250-
pub unsafe fn Py_SET_SIZE(ob: *mut PyVarObject, size: Py_ssize_t {
250+
pub unsafe fn Py_SET_SIZE(ob: *mut PyVarObject, size: Py_ssize_t) {
251251
(*ob).ob_size = size
252252
}
253253

0 commit comments

Comments
 (0)