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;