X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/40647d7b7b7fbeae828e0a032a3c3a5f204cdfa8..f31590988781d77ff5249987801d03a986368ca2:/src/tree.c diff --git a/src/tree.c b/src/tree.c index ab06d4f..c226273 100644 --- a/src/tree.c +++ b/src/tree.c @@ -46,12 +46,13 @@ new_class(char *otype, char *ptype, GList *nodes) } Node * -new_type(int stars, char *name) +new_type(int stars, char *name, char *postfix) { Type *node = (Type *)g_new(Node,1); node->type = TYPE_NODE; node->stars = stars; node->name = name; + node->postfix = postfix; return (Node *)node; }