mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 10:09:14 +00:00
Kernel: Add implicit auto qualifiers in Syscalls
This commit is contained in:
parent
f5b495d92c
commit
c860e0ab95
Notes:
sideshowbarker
2024-07-17 22:39:42 +09:00
Author: https://github.com/Hendiadyoin1
Commit: c860e0ab95
Pull-request: https://github.com/SerenityOS/serenity/pull/11294
10 changed files with 24 additions and 24 deletions
|
@ -58,7 +58,7 @@ ErrorOr<FlatPtr> Process::sys$fstatvfs(int fd, statvfs* buf)
|
|||
REQUIRE_PROMISE(stdio);
|
||||
|
||||
auto description = TRY(fds().open_file_description(fd));
|
||||
auto inode = description->inode();
|
||||
auto const* inode = description->inode();
|
||||
if (inode == nullptr)
|
||||
return ENOENT;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue