diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2021-12-18 18:37:21 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-18 10:31:18 -0800 |
commit | c860e0ab9541c430fcbb48c39fcb8f487d5894ac (patch) | |
tree | b1a2904d7d02c231a9966ae7a32df5cfd3447f33 /Kernel/Syscalls/poll.cpp | |
parent | f5b495d92ce45e21073c44692678680d708af015 (diff) | |
download | serenity-c860e0ab9541c430fcbb48c39fcb8f487d5894ac.zip |
Kernel: Add implicit auto qualifiers in Syscalls
Diffstat (limited to 'Kernel/Syscalls/poll.cpp')
-rw-r--r-- | Kernel/Syscalls/poll.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/poll.cpp b/Kernel/Syscalls/poll.cpp index 8465553bf5..6b914cdc8c 100644 --- a/Kernel/Syscalls/poll.cpp +++ b/Kernel/Syscalls/poll.cpp @@ -59,7 +59,7 @@ ErrorOr<FlatPtr> Process::sys$poll(Userspace<const Syscall::SC_poll_params*> use TRY(fds_info.try_append({ move(description), block_flags })); } - auto current_thread = Thread::current(); + auto* current_thread = Thread::current(); u32 previous_signal_mask = 0; if (params.sigmask) |