summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorlaforge <laforge>2002-02-13 07:14:53 +0000
committerlaforge <laforge>2002-02-13 07:14:53 +0000
commit2ee43d64ea1789c4dbcb886f4cf30a31552be68e (patch)
tree3d1fedff5d9aebbc56c098ee11c2c0605db4799a /kernel
parent5ec8515aa1b677432ae04647a4c1ce0604061c24 (diff)
remove trailing ; from macro, as it isn't needed.
Diffstat (limited to 'kernel')
-rw-r--r--kernel/ipt_ULOG.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/ipt_ULOG.c b/kernel/ipt_ULOG.c
index b46ffc2..369ee2e 100644
--- a/kernel/ipt_ULOG.c
+++ b/kernel/ipt_ULOG.c
@@ -29,7 +29,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.14 2002/01/18 21:22:23 laforge Exp $
+ * $Id: ipt_ULOG.c,v 1.15 2002/01/18 21:33:19 laforge Exp $
*/
#include <linux/module.h>
@@ -61,7 +61,7 @@ MODULE_LICENSE("GPL");
#define DEBUGP(format, args...)
#endif
-#define PRINTR(format, args...) do { if (net_ratelimit()) printk(format, ## args); } while (0);
+#define PRINTR(format, args...) do { if (net_ratelimit()) printk(format, ## args); } while (0)
MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
MODULE_DESCRIPTION("IP tables userspace logging module");