diff options
author | luigi <luigi@FreeBSD.org> | 2001-11-04 17:35:31 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2001-11-04 17:35:31 +0000 |
commit | 0c9b62266a0c6c62a44306a86fe3359548309c6c (patch) | |
tree | 95c621be014f453ed0fa275ab8552d7bdbd6f192 /sys/netinet | |
parent | 8b244d6bae762d1dc724eeddd0b738ab6bf1a34f (diff) | |
download | FreeBSD-src-0c9b62266a0c6c62a44306a86fe3359548309c6c.zip FreeBSD-src-0c9b62266a0c6c62a44306a86fe3359548309c6c.tar.gz |
s/FREE/free/
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_flow.c b/sys/netinet/ip_flow.c index a7af545..a23f2bb 100644 --- a/sys/netinet/ip_flow.c +++ b/sys/netinet/ip_flow.c @@ -199,7 +199,7 @@ ipflow_free( ipflow_addstats(ipf); RTFREE(ipf->ipf_ro.ro_rt); ipflow_inuse--; - FREE(ipf, M_IPFLOW); + free(ipf, M_IPFLOW); } static struct ipflow * |