summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/atm/sscfu/ng_sscfu_cust.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netgraph/atm/sscfu/ng_sscfu_cust.h')
-rw-r--r--sys/netgraph/atm/sscfu/ng_sscfu_cust.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/atm/sscfu/ng_sscfu_cust.h b/sys/netgraph/atm/sscfu/ng_sscfu_cust.h
index b700c1b..348575a 100644
--- a/sys/netgraph/atm/sscfu/ng_sscfu_cust.h
+++ b/sys/netgraph/atm/sscfu/ng_sscfu_cust.h
@@ -70,13 +70,13 @@
#define MEMZALLOC(PTR, CAST, SIZE) \
((PTR) = (CAST)malloc((SIZE), M_NG_SSCFU_INS, M_NOWAIT | M_ZERO))
#define MEMFREE(PTR) \
- FREE(PTR, M_NG_SSCFU_INS)
+ free(PTR, M_NG_SSCFU_INS)
#define SIG_ALLOC(PTR) \
((PTR) = malloc(sizeof(struct sscfu_sig), \
M_NG_SSCFU_SIG, M_NOWAIT | M_ZERO))
#define SIG_FREE(PTR) \
- FREE(PTR, M_NG_SSCFU_SIG)
+ free(PTR, M_NG_SSCFU_SIG)
#endif
OpenPOWER on IntegriCloud