Kernel: Modifiy clock_settime timespec argument to const

The timeppec paramter is read only, and should be const.
This commit is contained in:
Brian Gianforcaro 2020-08-09 12:45:39 -07:00 committed by Andreas Kling
commit 1be6145fdf
Notes: sideshowbarker 2024-07-19 04:05:57 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -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);