From 231ff0ec1116b406fbb1d10e17a9abad7bdad343 Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Fri, 31 Aug 2007 00:59:38 +0000 Subject: [PATCH] Fix a compile error on Windows. --- Include/pyerrors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;