diff options
author | phk <phk@FreeBSD.org> | 2004-06-13 17:15:05 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-06-13 17:15:05 +0000 |
commit | 469e445f95c246a203c12198eff9932b25b49b12 (patch) | |
tree | 08cf787fa817002a2aa775e18a43e76208b120f7 /sys/pci/if_mn.c | |
parent | 4c4645815b87fd45d47ced89205cc64f7826262d (diff) | |
download | FreeBSD-src-469e445f95c246a203c12198eff9932b25b49b12.zip FreeBSD-src-469e445f95c246a203c12198eff9932b25b49b12.tar.gz |
Use NG_FREE_MSG() instead of FREE().
Diffstat (limited to 'sys/pci/if_mn.c')
-rw-r--r-- | sys/pci/if_mn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pci/if_mn.c b/sys/pci/if_mn.c index 84053f3..10123ef 100644 --- a/sys/pci/if_mn.c +++ b/sys/pci/if_mn.c @@ -368,7 +368,7 @@ ngmn_rcvmsg(node_p node, item_p item, hook_p lasthook) ngmn_config(node, s, r); resp->header.arglen = strlen(r) + 1; NG_RESPOND_MSG(i, node, item, resp); - FREE(msg, M_NETGRAPH); + NG_FREE_MSG(msg); return (0); } pos = 0; |