Skip to content

Commit

Permalink
Wrong direction in the conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
arigo authored Jan 27, 2024
1 parent 328ae8b commit 4692fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c/_cffi_backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -2457,7 +2457,7 @@ static Py_hash_t cdata_hash(PyObject *v)
}
Py_DECREF(vv);
}
#if PY_VERSION_HEX >= 0x030D0000
#if PY_VERSION_HEX < 0x030D0000
return _Py_HashPointer(((CDataObject *)v)->c_data);
#else
return Py_HashPointer(((CDataObject *)v)->c_data);
Expand Down

0 comments on commit 4692fed

Please sign in to comment.