mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -85,14 +85,14 @@ static ErrorOr<void> determine_system_mode()
|
|||
return {};
|
||||
}
|
||||
|
||||
static void chown_wrapper(const char* path, uid_t uid, gid_t gid)
|
||||
static void chown_wrapper(char const* path, uid_t uid, gid_t gid)
|
||||
{
|
||||
int rc = chown(path, uid, gid);
|
||||
if (rc < 0 && errno != ENOENT) {
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
static void chmod_wrapper(const char* path, mode_t mode)
|
||||
static void chmod_wrapper(char const* path, mode_t mode)
|
||||
{
|
||||
int rc = chmod(path, mode);
|
||||
if (rc < 0 && errno != ENOENT) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue