diff options
author | Pavel Machek <pavel@suse.cz> | 2008-04-21 22:15:06 +0000 |
---|---|---|
committer | Jesper Juhl <juhl@hera.kernel.org> | 2008-04-21 22:15:06 +0000 |
commit | f5264481c8049673e2cc8c7aca410931f571ba2d (patch) | |
tree | cfe54747b75be1c83d2102d9e7f80c650602fcdc /fs/select.c | |
parent | 1fb7c6e4cba35b5e7cef88b58d0a2ad164d801a5 (diff) |
trivial: small cleanups
These are small cleanups all over the tree.
Trivial style and comment changes to
fs/select.c, kernel/signal.c, kernel/stop_machine.c & mm/pdflush.c
Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Diffstat (limited to 'fs/select.c')
-rw-r--r-- | fs/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/select.c b/fs/select.c index 5633fe980781..00f58c5c7e05 100644 --- a/fs/select.c +++ b/fs/select.c @@ -260,7 +260,7 @@ int do_select(int n, fd_set_bits *fds, s64 *timeout) wait = NULL; if (retval || !*timeout || signal_pending(current)) break; - if(table.error) { + if (table.error) { retval = table.error; break; } |