Skip to content
Merged
Prev Previous commit
Next Next commit
fix compilation
  • Loading branch information
picnixz committed Feb 7, 2025
commit e2ee75e25a9eb8ee87087b1dc777e1b929c1f256
2 changes: 1 addition & 1 deletion Modules/_interpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,7 @@ _channelid_new(PyObject *mod, PyTypeObject *cls,
static void
channelid_dealloc(PyObject *op)
{
channelid *self = _channelid_CAST(self);
channelid *self = _channelid_CAST(op);
int64_t cid = self->cid;
_channels *channels = self->channels;

Expand Down