summaryrefslogtreecommitdiff
path: root/sys/netnatm
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2007-12-09 21:36:41 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2007-12-09 21:36:41 +0000
commite1bd73e21db8f0e35dc77f7ffacea9dd43ae5411 (patch)
tree6e169b1b129cca8a28e4b44f3fe6d4c6a336351e /sys/netnatm
parentc123fb9ee6431e959a9b4d53b54cab7af70e591b (diff)
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;
}