diff options
Diffstat (limited to 'Modules/mpzmodule.c')
-rw-r--r-- | Modules/mpzmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c index 44349e9..2cce2cc 100644 --- a/Modules/mpzmodule.c +++ b/Modules/mpzmodule.c @@ -1209,7 +1209,7 @@ static PyObject * MPZ_divm(PyObject *self, PyObject *args) { PyObject *num, *den, *mod; - mpzobject *mpznum, *mpzden, *mpzmod = NULL; + mpzobject *mpznum, *mpzden = NULL, *mpzmod = NULL; mpzobject *z = NULL; |