mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Use the MPD() accessor macro.
This commit is contained in:
@@ -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 *
|
||||
|
||||
Reference in New Issue
Block a user