Fix building as Python module (manpage-generation)

This commit is contained in:
2014-09-08 11:22:40 +10:00
parent da3be518b6
commit 4e732b9860
2 changed files with 25 additions and 17 deletions

View File

@@ -1560,10 +1560,10 @@ static PyObject *Matrix_adjugate(MatrixObject *self)
adjoint_matrix_n(self->matrix, self->matrix, self->num_col);
}
else {
PyErr_Format(PyExc_ValueError,
"Matrix adjugate(d): size (%d) unsupported",
(int)self->num_col);
return NULL;
PyErr_Format(PyExc_ValueError,
"Matrix adjugate(d): size (%d) unsupported",
(int)self->num_col);
return NULL;
}