diff options
author | glebius <glebius@FreeBSD.org> | 2012-01-16 12:33:55 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2012-01-16 12:33:55 +0000 |
commit | 32f0f52d7a5eac6b34f22ea376182c6d97576dbf (patch) | |
tree | 55be35936ed83d556f7cd4b6704ba8362e23140b /sys/netgraph | |
parent | 6541877ebc1b813f4ff85f8d3bb652c024492440 (diff) | |
download | FreeBSD-src-32f0f52d7a5eac6b34f22ea376182c6d97576dbf.zip FreeBSD-src-32f0f52d7a5eac6b34f22ea376182c6d97576dbf.tar.gz |
Add missing static.
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_ipfw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_ipfw.c b/sys/netgraph/ng_ipfw.c index 117c608..fe8ea89 100644 --- a/sys/netgraph/ng_ipfw.c +++ b/sys/netgraph/ng_ipfw.c @@ -194,7 +194,7 @@ ng_ipfw_connect(hook_p hook) } /* Look up hook by name */ -hook_p +static hook_p ng_ipfw_findhook(node_p node, const char *name) { u_int16_t n; /* numeric representation of hook */ |