mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-02 14:19:15 +00:00
LibC: Make setgid() definition protoype match declaration
This commit is contained in:
parent
edef6ccff5
commit
9abafa2d1c
Notes:
sideshowbarker
2024-07-19 05:36:05 +09:00
Author: https://github.com/nico
Commit: 9abafa2d1c
Pull-request: https://github.com/SerenityOS/serenity/pull/2567
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ int setuid(uid_t uid)
|
|||
__RETURN_WITH_ERRNO(rc, rc, -1);
|
||||
}
|
||||
|
||||
int setgid(uid_t gid)
|
||||
int setgid(gid_t gid)
|
||||
{
|
||||
int rc = syscall(SC_setgid, gid);
|
||||
__RETURN_WITH_ERRNO(rc, rc, -1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue