mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
This commit was generated by cvs2svn to compensate for changes in r78460,
which included commits to RCS files with non-trunk default branches.
This commit is contained in:
commit
a52dffddd2
1 changed files with 2 additions and 2 deletions
|
|
@ -106,11 +106,11 @@ struct node {
|
|||
virtual const char *type() = 0;
|
||||
};
|
||||
|
||||
inline node::node() : next(0)
|
||||
inline node::node() : next(0), last(0)
|
||||
{
|
||||
}
|
||||
|
||||
inline node::node(node *n) : next(n)
|
||||
inline node::node(node *n) : next(n), last(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue