summaryrefslogtreecommitdiffstats
path: root/sys/netnatm
diff options
context:
space:
mode:
authorhshoexer <hshoexer@openbsd.org>2007-12-09 21:36:40 +0000
committerhshoexer <hshoexer@openbsd.org>2007-12-09 21:36:40 +0000
commit06f3a88807c8ef0d838ef6bbfc4938ef385e6b44 (patch)
treea9a5b34befc318257b9ac9584df843bb4402337b /sys/netnatm
parentMALLOC/FREE -> malloc/free (diff)
downloadwireguard-openbsd-06f3a88807c8ef0d838ef6bbfc4938ef385e6b44.tar.xz
wireguard-openbsd-06f3a88807c8ef0d838ef6bbfc4938ef385e6b44.zip
another FREE->free
ok gilles
Diffstat (limited to 'sys/netnatm')
-rw-r--r--sys/netnatm/natm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netnatm/natm.c b/sys/netnatm/natm.c
index 1703760ac12..39868a1eab7 100644
--- a/sys/netnatm/natm.c
+++ b/sys/netnatm/natm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: natm.c,v 1.8 2007/09/12 18:45:14 mk Exp $ */
+/* $OpenBSD: natm.c,v 1.9 2007/12/09 21:36:40 hshoexer Exp $ */
/*
*
@@ -368,7 +368,7 @@ next:
if (npcb->npcb_flags & NPCB_DRAIN) {
m_freem(m);
if (npcb->npcb_inq == 0)
- FREE(npcb, M_PCB); /* done! */
+ free(npcb, M_PCB); /* done! */
goto next;
}