Commit 94ef3e4c authored by Stefan Krah's avatar Stefan Krah

Use the MPD() accessor macro.

parent b547d395
......@@ -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 *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment