- Some cleanup writes, e.g. making initalisation code order correspond

to struct field order.
This commit is contained in:
ccremers
2004-08-12 13:22:49 +00:00
parent 032d322952
commit b9f4d11d0a
3 changed files with 8 additions and 5 deletions

View File

@@ -191,10 +191,10 @@ roleCreate (Term name)
r = memAlloc (sizeof (struct role));
r->nameterm = name;
r->next = NULL;
r->roledef = NULL;
r->locals = NULL;
r->variables = NULL;
r->roledef = NULL;
r->next = NULL;
return r;
}