Unbreak LINT build, caused by a change in struct ng_node layout introduced

with r191816, which become uncovered only with NETGRAPH_DEBUG defined.

NOT approved by mentor (julian) due to emergency.
This commit is contained in:
Marko Zec 2009-05-05 16:26:06 +00:00
parent b9c81a5dce
commit a40b78741b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=191827
2 changed files with 1 additions and 1 deletions

View File

@ -138,6 +138,7 @@ struct ng_node ng_deadnode = {
STAILQ_HEAD_INITIALIZER(ng_deadnode.nd_input_queue.queue),
},
1, /* refs */
NULL, /* vnet */
#ifdef NETGRAPH_DEBUG
ND_MAGIC,
__FILE__,

View File

@ -33,7 +33,6 @@
#ifndef _SYS_VIMAGE_H_
#define _SYS_VIMAGE_H_
#include <sys/proc.h>
#include <sys/queue.h>
#if defined(VIMAGE) && defined(VIMAGE_GLOBALS)