ipc, kernel: clear whitespace

trailing whitespace

Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Paul McQuade 2014-06-06 14:37:37 -07:00 committed by Linus Torvalds
parent 7153e40273
commit 46c0a8ca3e
6 changed files with 29 additions and 30 deletions

View file

@ -134,7 +134,7 @@ static int check_free_space(struct bsd_acct_struct *acct, struct file *file)
spin_lock(&acct_lock);
if (file != acct->file) {
if (act)
res = act>0;
res = act > 0;
goto out;
}
@ -262,7 +262,7 @@ SYSCALL_DEFINE1(acct, const char __user *, name)
if (name) {
struct filename *tmp = getname(name);
if (IS_ERR(tmp))
return (PTR_ERR(tmp));
return PTR_ERR(tmp);
error = acct_on(tmp);
putname(tmp);
} else {