fix typo in _struct
diff --git a/Modules/_struct.c b/Modules/_struct.c
index 93b9ec1..7d0467d 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -46,8 +46,8 @@
PyObject *weakreflist; /* List of weak references */
} PyStructObject;
-#define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStruct_Type)
-#define PyStruct_CheckExact(op) ((op)->ob_type == &PyStruct_Type)
+#define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStructType)
+#define PyStruct_CheckExact(op) ((op)->ob_type == &PyStructType)
/* Exception */