diff options
| author | 2007-12-09 21:36:40 +0000 | |
|---|---|---|
| committer | 2007-12-09 21:36:40 +0000 | |
| commit | 06f3a88807c8ef0d838ef6bbfc4938ef385e6b44 (patch) | |
| tree | a9a5b34befc318257b9ac9584df843bb4402337b /sys/netnatm | |
| parent | MALLOC/FREE -> malloc/free (diff) | |
| download | wireguard-openbsd-06f3a88807c8ef0d838ef6bbfc4938ef385e6b44.tar.xz wireguard-openbsd-06f3a88807c8ef0d838ef6bbfc4938ef385e6b44.zip | |
another FREE->free
ok gilles
Diffstat (limited to 'sys/netnatm')
| -rw-r--r-- | sys/netnatm/natm.c | 4 |
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; } |
