From 7757dbba0f25f76437a0e46fafc09243af5193b6 Mon Sep 17 00:00:00 2001 From: laforge Date: Thu, 29 Aug 2002 10:51:35 +0000 Subject: use NULL instead of 0, typedefs are evil(TM) --- kernel/ipt_ULOG.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/ipt_ULOG.c b/kernel/ipt_ULOG.c index e223806..9f04a31 100644 --- a/kernel/ipt_ULOG.c +++ b/kernel/ipt_ULOG.c @@ -30,7 +30,7 @@ * Specify, after how many clock ticks (intel: 100 per second) the queue * should be flushed even if it is not full yet. * - * $Id: ipt_ULOG.c,v 1.18 2002/04/16 07:33:00 laforge Exp $ + * $Id: ipt_ULOG.c,v 1.19 2002/07/07 11:15:31 laforge Exp $ */ #include @@ -321,7 +321,7 @@ static int __init init(void) ulog_buffers[i].timer.data = i; } - nflognl = netlink_kernel_create(NETLINK_NFLOG, 0); + nflognl = netlink_kernel_create(NETLINK_NFLOG, NULL); if (!nflognl) return -ENOMEM; @@ -335,7 +335,7 @@ static int __init init(void) static void __exit fini(void) { - struct ulog_buff_t *ub; + ulog_buff_t *ub; int i; DEBUGP("ipt_ULOG: cleanup_module\n"); -- cgit v1.2.3