mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Kernel: Modifiy clock_settime timespec argument to const
The timeppec paramter is read only, and should be const.
This commit is contained in:
committed by
Andreas Kling
parent
b4d04fd8d1
commit
1be6145fdf
@@ -54,7 +54,7 @@ int Process::sys$clock_gettime(clockid_t clock_id, Userspace<timespec*> user_ts)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int Process::sys$clock_settime(clockid_t clock_id, timespec* user_ts)
|
||||
int Process::sys$clock_settime(clockid_t clock_id, const timespec* user_ts)
|
||||
{
|
||||
REQUIRE_PROMISE(settime);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user