fix argcount bug for build_node_children
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index db478ad..c057135 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -647,7 +647,7 @@
 	if (ISNONTERMINAL(type)) {
 	    node* new_child = CHILD(root, i - 1);
 
-	    if (new_child != build_node_children(elem, new_child))
+	    if (new_child != build_node_children(elem, new_child, line_num))
 		return (0);
 	}
 	else if (type == NEWLINE)	/* It's true:  we increment the     */