1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

Kernel+LibC: Pack SC_inode_watcher_add_watch_params struct better

Flagged by pvs-studio, ordering the members from largest to smallest
allows us to save a few bytes in the size of the struct.
This commit is contained in:
Brian Gianforcaro 2021-09-15 23:37:39 -07:00 committed by Andreas Kling
parent dba5710efa
commit b45ca5d56e
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ int create_inode_watcher(unsigned flags)
int inode_watcher_add_watch(int fd, const char* path, size_t path_length, unsigned event_mask)
{
Syscall::SC_inode_watcher_add_watch_params params { fd, { path, path_length }, event_mask };
Syscall::SC_inode_watcher_add_watch_params params { { path, path_length }, fd, event_mask };
int rc = syscall(SC_inode_watcher_add_watch, &params);
__RETURN_WITH_ERRNO(rc, rc, -1);
}