commit | 231ff0ec1116b406fbb1d10e17a9abad7bdad343 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Fri Aug 31 00:59:38 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Fri Aug 31 00:59:38 2007 +0000 |
tree | 0e13864f110875743ea3f3e5d01545293913bd40 | |
parent | 812567d3f8e9d7ca69014a7ce5b54a262f408e3c [diff] |
Fix a compile error on Windows.
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 8d676d9..1e1cf5b 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h
@@ -7,7 +7,7 @@ /* 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;