Use the MPD() accessor macro.
This commit is contained in:
parent
b547d395ab
commit
94ef3e4c1d
|
@ -3745,9 +3745,9 @@ nm_dec_as_long(PyObject *dec)
|
|||
}
|
||||
|
||||
static int
|
||||
nm_nonzero(PyDecObject *v)
|
||||
nm_nonzero(PyObject *v)
|
||||
{
|
||||
return !mpd_iszero(v->dec);
|
||||
return !mpd_iszero(MPD(v));
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Reference in New Issue