summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/node.h b/Include/node.h
index 8f5ef23..c909ec5 100644
--- a/Include/node.h
+++ b/Include/node.h
@@ -8,11 +8,11 @@ extern "C" {
#endif
typedef struct _node {
- short n_type;
char *n_str;
+ struct _node *n_child;
int n_lineno;
int n_nchildren;
- struct _node *n_child;
+ short n_type;
} node;
PyAPI_FUNC(node *) PyNode_New(int type);