From a6289ec3ffd3b212661975b29e86ad6f7a99b0ef Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 20 Nov 2015 23:14:50 +0100 Subject: [PATCH] build: silence compiler warning in xt_quota2 xt_quota2.c:67:6: warning: unused variable "ret" [-Wunused-variable] --- extensions/xt_quota2.c | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/xt_quota2.c b/extensions/xt_quota2.c index 8257d05..a21ada2 100644 --- a/extensions/xt_quota2.c +++ b/extensions/xt_quota2.c @@ -64,7 +64,6 @@ module_param_named(gid, quota_list_gid, uint, S_IRUGO | S_IWUSR); static int quota_proc_show(struct seq_file *m, void *data) { struct xt_quota_counter *e = m->private; - int ret; spin_lock_bh(&e->lock); seq_printf(m, "%llu\n", e->quota);