diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 8d676d9ed4b..1e1cf5b7c73 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -7,7 +7,7 @@ extern "C" { /* Error objects */ /* PyException_HEAD defines the initial segment of every exception class. */ -#define PyException_HEAD PyObject_HEAD; PyObject *dict;\ +#define PyException_HEAD PyObject_HEAD PyObject *dict;\ PyObject *args; PyObject *traceback;\ PyObject *context; PyObject *cause;