build: silence compiler warning in xt_quota2

xt_quota2.c:67:6: warning: unused variable "ret" [-Wunused-variable]
This commit is contained in:
Jan Engelhardt
2015-11-20 23:14:50 +01:00
parent 01e7128a80
commit a6289ec3ff

View File

@@ -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) static int quota_proc_show(struct seq_file *m, void *data)
{ {
struct xt_quota_counter *e = m->private; struct xt_quota_counter *e = m->private;
int ret;
spin_lock_bh(&e->lock); spin_lock_bh(&e->lock);
seq_printf(m, "%llu\n", e->quota); seq_printf(m, "%llu\n", e->quota);