mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
Kernel: Make watch_file() syscall take path length as a size_t
We don't care to handle negative path lengths anyway.
This commit is contained in:
parent
cf7df95ffe
commit
d6b06fd5a3
4 changed files with 4 additions and 4 deletions
|
@ -101,7 +101,7 @@ public:
|
|||
int sys$sync();
|
||||
int sys$beep();
|
||||
int sys$get_process_name(char* buffer, int buffer_size);
|
||||
int sys$watch_file(const char* path, int path_length);
|
||||
int sys$watch_file(const char* path, size_t path_length);
|
||||
int sys$dbgputch(u8);
|
||||
int sys$dbgputstr(const u8*, int length);
|
||||
int sys$dump_backtrace();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue