diff options
| author | Luigi Rizzo <luigi@FreeBSD.org> | 2015-07-10 19:18:49 +0000 |
|---|---|---|
| committer | Luigi Rizzo <luigi@FreeBSD.org> | 2015-07-10 19:18:49 +0000 |
| commit | e38e277fc423e01ab25dbdd0b63e683f00268524 (patch) | |
| tree | a0535c0e5109284ef0c828a4ed148354310ce936 /sys/netpfil | |
| parent | e25716b7cca9a091bd41c76fe211bcb9f50e9cae (diff) | |
Notes
Diffstat (limited to 'sys/netpfil')
| -rw-r--r-- | sys/netpfil/ipfw/dn_heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/ipfw/dn_heap.c b/sys/netpfil/ipfw/dn_heap.c index 1d585116d075..42431b00a72c 100644 --- a/sys/netpfil/ipfw/dn_heap.c +++ b/sys/netpfil/ipfw/dn_heap.c @@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$"); #include "dn_heap.h" #define log(x, arg...) fprintf(stderr, ## arg) #define panic(x...) fprintf(stderr, ## x), exit(1) -#define MALLOC_DEFINE(a, b, c) +#define MALLOC_DEFINE(a, b, c) volatile int __dummy__ ## a __attribute__((__unused__)) static void *my_malloc(int s) { return malloc(s); } static void my_free(void *p) { free(p); } #define malloc(s, t, w) my_malloc(s) |
