Fix build failure.

This commit is contained in:
Antoine Pitrou 2012-05-16 12:51:55 +02:00
parent e7672d38dc
commit 32bc80c523
1 changed files with 2 additions and 1 deletions

View File

@ -349,7 +349,8 @@ PyException_SetContext(PyObject *self, PyObject *context) {
static struct PyMemberDef BaseException_members[] = {
{"__suppress_context__", T_BOOL,
offsetof(PyBaseExceptionObject, suppress_context)}
offsetof(PyBaseExceptionObject, suppress_context)},
{NULL}
};