build: support for Linux 4.3

This commit is contained in:
Jan Engelhardt
2015-10-12 16:27:08 +02:00
parent 939fc901c1
commit 237fe7c660
4 changed files with 8 additions and 5 deletions

View File

@@ -67,9 +67,9 @@ static int quota_proc_show(struct seq_file *m, void *data)
int ret;
spin_lock_bh(&e->lock);
ret = seq_printf(m, "%llu\n", e->quota);
seq_printf(m, "%llu\n", e->quota);
spin_unlock_bh(&e->lock);
return ret;
return 0;
}
static int quota_proc_open(struct inode *inode, struct file *file)