From 66f807ed8b3634dc73d9f7526c484e43f094c0ee Mon Sep 17 00:00:00 2001 From: des Date: Thu, 23 Oct 2008 15:53:51 +0000 Subject: Retire the MALLOC and FREE macros. They are an abomination unto style(9). MFC after: 3 months --- sys/netnatm/natm_pcb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netnatm/natm_pcb.c') diff --git a/sys/netnatm/natm_pcb.c b/sys/netnatm/natm_pcb.c index 9cbc460..16ceab1 100644 --- a/sys/netnatm/natm_pcb.c +++ b/sys/netnatm/natm_pcb.c @@ -91,7 +91,7 @@ npcb_free(struct natmpcb *npcb, int op) if (npcb->npcb_inq) { npcb->npcb_flags = NPCB_DRAIN; /* flag for distruct. */ } else { - FREE(npcb, M_PCB); /* kill it! */ + free(npcb, M_PCB); /* kill it! */ } } } -- cgit v1.1